Skip to content

Commit

Permalink
first step to remove getContentEditText/getTitleEditText
Browse files Browse the repository at this point in the history
  • Loading branch information
maxme committed Feb 10, 2015
1 parent aec6410 commit 839f755
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,22 @@ public void onAttach(Activity activity) {
}
}

/**
* Called by the activity when back button is pressed.
*/
public boolean onBackPressed() {
return false;
}

/**
* The editor may need to differentiate local draft and published articles
*
* @param isLocalDraft edited post is a local draft
*/
public void setLocalDraft(boolean isLocalDraft) {
// Not unused in the new editor
}

public interface EditorFragmentListener {
public void onSettingsClicked();
public void onAddMediaButtonClicked();
Expand Down

0 comments on commit 839f755

Please sign in to comment.