Skip to content

Commit

Permalink
add getters for Title/Content
Browse files Browse the repository at this point in the history
  • Loading branch information
maxme committed Feb 10, 2015
1 parent 406a9d4 commit 5cac05f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,16 @@ public void setTitle(CharSequence text) {
public void setContent(CharSequence text) {
// TODO
}

@Override
public CharSequence getTitle() {
// TODO
return null;
}

@Override
public CharSequence getContent() {
// TODO
return null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
public abstract class EditorFragmentAbstract extends Fragment {
public abstract void setTitle(CharSequence text);
public abstract void setContent(CharSequence text);
public abstract CharSequence getTitle();
public abstract CharSequence getContent();

protected EditorFragmentListener mEditorFragmentListener;

@Override
Expand Down

0 comments on commit 5cac05f

Please sign in to comment.