package grader.Main; import java.util.Collection; /** * * The main gradebook object that holds all the information for the class including the category tree, the students, and the scores * * @author * @version * **/ public class Gradebook { /** Default Constructor **/ public Gradebook() { } protected String gradeBookTitle; protected String gradeBookName; protected int classNumber; protected int section; protected int quarter; protected int year; protected Collection stdnts; protected Collection cats; protected FinalGradeDistribution finalGradeDistribution; }