package grader.Main; import java.util.Collection; /** * * A Category is used to organize GradedItems by specifying *a heirarchy. Each Category can have children that appear * beneath it on the gradesheet. The Category holds * information pertaining to grading options for all Assignments in the Category. * * @author * @version * **/ public class Category { /** Default Constructor **/ public Category() { } protected int graceDays_; protected int lowestScores_; protected Collection object; }