Skip to content

Instantly share code, notes, and snippets.

@yemyatthu1990
Last active February 9, 2017 00:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yemyatthu1990/d4af62b1da696a59ce2b36d075bed2ed to your computer and use it in GitHub Desktop.
Save yemyatthu1990/d4af62b1da696a59ce2b36d075bed2ed to your computer and use it in GitHub Desktop.
public interface TownshipListView extends LoadDataView {
void renderTownshipList(List<TownshipModel> townshipModels);
}
public interface LoadDataView {
void showLoading();
void hideLoading();
void showError(String errorMessage);
Context context();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment