File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed
WordPressEditor/src/main/java/org/wordpress/android/editor Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 2222import java .io .InputStream ;
2323import java .io .InputStreamReader ;
2424
25- public class EditorFragment extends Fragment {
25+ public class EditorFragment extends EditorFragmentInterface {
2626 private static final String ARG_PARAM_TITLE = "param_title" ;
2727 private static final String ARG_PARAM_CONTENT = "param_content" ;
2828
@@ -122,4 +122,14 @@ private String getHtmlEditor() {
122122 return null ;
123123 }
124124 }
125+
126+ @ Override
127+ public void setTitle (CharSequence text ) {
128+ // TODO
129+ }
130+
131+ @ Override
132+ public void setContent (CharSequence text ) {
133+ // TODO
134+ }
125135}
Original file line number Diff line number Diff line change 1+ package org .wordpress .android .editor ;
2+
3+ import android .app .Fragment ;
4+
5+ public abstract class EditorFragmentInterface extends Fragment {
6+ public abstract void setTitle (CharSequence text );
7+ public abstract void setContent (CharSequence text );
8+ }
You can’t perform that action at this time.
0 commit comments