001package edu.pdx.cs410J.grader.poa; 002 003import java.util.List; 004 005public interface StudentsView { 006 void setStudents(List<String> students); 007 008 void setSelectedStudentIndex(int index); 009 010 void addSelectStudentHandler(SelectStudentHandler handler); 011 012 public interface SelectStudentHandler { 013 void studentSelected(int index); 014 } 015}