package grader2.Gradebook;

import grader2.GradingScheme.*;
import grader2.View.*;
import grader2.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;

}