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