Skip to content

Instantly share code, notes, and snippets.

@amitkma
Created June 2, 2017 12:42
Show Gist options
  • Save amitkma/f57f5b1aeba53f8e90f1bcad9c23eb7a to your computer and use it in GitHub Desktop.
Save amitkma/f57f5b1aeba53f8e90f1bcad9c23eb7a to your computer and use it in GitHub Desktop.
public interface MainContract {
interface View extends MvpView<Presenter> {
void updateView(List<Note> items);
}
interface Presenter extends MvpPresenter{
void addNote(String note);
void removeNote(Note note);
void getAllNotes();
void clearAll();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment