File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
WordPressEditor/src/main/java/org/wordpress/android/editor Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -131,4 +131,16 @@ public void setTitle(CharSequence text) {
131131 public void setContent (CharSequence text ) {
132132 // TODO
133133 }
134+
135+ @ Override
136+ public CharSequence getTitle () {
137+ // TODO
138+ return null ;
139+ }
140+
141+ @ Override
142+ public CharSequence getContent () {
143+ // TODO
144+ return null ;
145+ }
134146}
Original file line number Diff line number Diff line change 66public abstract class EditorFragmentAbstract extends Fragment {
77 public abstract void setTitle (CharSequence text );
88 public abstract void setContent (CharSequence text );
9+ public abstract CharSequence getTitle ();
10+ public abstract CharSequence getContent ();
11+
912 protected EditorFragmentListener mEditorFragmentListener ;
1013
1114 @ Override
You can’t perform that action at this time.
0 commit comments