[go: nahoru, domu]

Skip to content

Commit

Permalink
rename EditorFragmentInterface to EditorFragmentAbstract
Browse files Browse the repository at this point in the history
  • Loading branch information
maxme committed Feb 10, 2015
1 parent 4b1beca commit 4b80ec9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;

import org.wordpress.android.editor.EditorFragmentInterface.EditorFragmentListener;
import org.wordpress.android.editor.EditorFragmentAbstract.EditorFragmentListener;

public class EditorExampleActivity extends ActionBarActivity implements EditorFragmentListener {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import android.annotation.SuppressLint;
import android.content.res.AssetManager;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
Expand All @@ -22,7 +21,7 @@
import java.io.InputStream;
import java.io.InputStreamReader;

public class EditorFragment extends EditorFragmentInterface {
public class EditorFragment extends EditorFragmentAbstract {
private static final String ARG_PARAM_TITLE = "param_title";
private static final String ARG_PARAM_CONTENT = "param_content";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import android.app.Activity;
import android.app.Fragment;

public abstract class EditorFragmentInterface extends Fragment {
public abstract class EditorFragmentAbstract extends Fragment {
public abstract void setTitle(CharSequence text);
public abstract void setContent(CharSequence text);
protected EditorFragmentListener mEditorFragmentListener;
Expand Down

0 comments on commit 4b80ec9

Please sign in to comment.