File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
WordPressEditor/src/main/java/org/wordpress/android/editor Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 33import android .os .Bundle ;
44import android .support .v7 .app .ActionBarActivity ;
55
6- import org .wordpress .android .editor .EditorFragmentInterface .EditorFragmentListener ;
6+ import org .wordpress .android .editor .EditorFragmentAbstract .EditorFragmentListener ;
77
88public class EditorExampleActivity extends ActionBarActivity implements EditorFragmentListener {
99 @ Override
Original file line number Diff line number Diff line change 33import android .annotation .SuppressLint ;
44import android .content .res .AssetManager ;
55import android .os .Bundle ;
6- import android .support .v4 .app .Fragment ;
76import android .view .LayoutInflater ;
87import android .view .View ;
98import android .view .ViewGroup ;
2221import java .io .InputStream ;
2322import java .io .InputStreamReader ;
2423
25- public class EditorFragment extends EditorFragmentInterface {
24+ public class EditorFragment extends EditorFragmentAbstract {
2625 private static final String ARG_PARAM_TITLE = "param_title" ;
2726 private static final String ARG_PARAM_CONTENT = "param_content" ;
2827
Original file line number Diff line number Diff line change 33import android .app .Activity ;
44import android .app .Fragment ;
55
6- public abstract class EditorFragmentInterface extends Fragment {
6+ public abstract class EditorFragmentAbstract extends Fragment {
77 public abstract void setTitle (CharSequence text );
88 public abstract void setContent (CharSequence text );
99 protected EditorFragmentListener mEditorFragmentListener ;
You can’t perform that action at this time.
0 commit comments