package grader2.Gradebook; import grader2.GradingScheme.*; import grader2.View.*; import grader2.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_; }