Skip to content

Instantly share code, notes, and snippets.

@dazza5000
Created November 16, 2016 19:45
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 dazza5000/3953a8982864c3b0d78b01f8acf71a89 to your computer and use it in GitHub Desktop.
Save dazza5000/3953a8982864c3b0d78b01f8acf71a89 to your computer and use it in GitHub Desktop.
Events View
interface View {
void showEvents(List<Event> events);
void setPizzaCount(int count);
void setTacoCount(int count);
void setBeerCount(int count);
void setTotalCount(int count);
void showFilteringPopUpMenu();
void showNoEventsView();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment