package grader.Main; import java.util.Collection; /** * * A GradeBook contains all information needed for the class. Course * title, section number, instructor of the class, teacher assistant(s) if * applicable, student roster, a customizeable grade scheme, and all graded items are included. * * @author * @version * **/ public class GradeBook { /** Default Constructor **/ public GradeBook() { } protected User instructor; protected String course; protected int section; protected Collection assistant; protected Roster r; protected GradeScheme scheme; protected Collection items; }