package grader.Gradebook; import grader.GradingScheme.*; import grader.View.*; import grader.Category.*; import java.util.Collection; /** * * Collection of graded items added to the GradeBook eg: 5-> Quiz, Participation, Midterm1, Midterm1, Final * * @author * @version * **/ public class Items { /** Default Constructor **/ public Items() { } protected Collection data; }