package Proctor; import java.util.*; public class Student { public int id; public ArrayList classList; public ArrayList testList; public String firstName; public String lastName; /** Creates a new student. @param firstName The student's first name. @param lastName The student's last name. @param id The student's id. */ public Student(String firstName, String lastName, int id) { } /** Add's a class to the student's class list. @param cls The class to be added to the student's class list. */ public boolean addClass(Object cls) { return false; } /** Add's a test to the student's test list. @param test The test to be added to the student's test list. */ public boolean addTest(Object test) { return false; } }