package grader.Gradebook; import grader.GradingScheme.*; import grader.View.*; import grader.Category.*; import java.util.Collection; /** * * A GradeBook is our top tier object. It is comprised of a Course *, Quarter, Professor, Students, Graded items and the Grading Scheme. * * @author * @version * **/ public class GradeBook { /** Default Constructor **/ public GradeBook() { } protected Class class_; protected Professor prof; protected students stu; protected GradingScheme gs; protected MarkSet ms; protected Items items; }