package grader.Gradebook; import grader.GradingScheme.*; import grader.View.*; import grader.Category.*; import java.util.Collection; /** * * Course contains four components to keep track of the information for each course in the Gradebook. * * @author * @version * **/ public class Course { /** Default Constructor **/ public Course() { } protected String name_; protected String cmajor_; protected int number_; protected int section_; protected String quarter_; protected int year_; }