Skip to content

Instantly share code, notes, and snippets.

@josedlpozo
Created March 1, 2017 14:51
Show Gist options
  • Save josedlpozo/68494ff1073f8a3bdb640c5a68092968 to your computer and use it in GitHub Desktop.
Save josedlpozo/68494ff1073f8a3bdb640c5a68092968 to your computer and use it in GitHub Desktop.
Simple Java View Interface
public interface ProfessorsListView {
void showProfessors(ProfessorsViewModel professors);
void goToProfessorDetail(ProfessorViewModel professor);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment