Created
January 15, 2017 07:45
-
-
Save travisdachi/6a6d2c49a3e45c720e02c288d005a8ca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface HomeContract { | |
interface HomeView { | |
void showLoading(); | |
void hideLoading(); | |
void showTitle(String title); | |
void showMessage(String message); | |
void showAllFilms(List<Film> films); | |
void navigateToFilmPage(Film film); | |
} | |
interface HomePresenter { | |
void getAllFilms(); | |
void onFilmItemClicked(Film film); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment