package testtool.Main; import java.util.Collection; /** * * A ProctoredStudent represents a student in the proctoring and grading phases * of TestTool it contains zero or more answered questions (which can be GradedQuestions, which is a subset of AnsweredQuestions) * * @author * @version * **/ public class ProctoredStudent { /** Default Constructor **/ public ProctoredStudent() { } protected String uname; protected boolean ifin; protected boolean ians; protected boolean igrade; protected Collection aq; protected boolean ie; }