package grader.Gradebook; import grader.GradingScheme.*; import grader.View.*; import grader.Category.*; import java.util.Collection; /** * * collection of students which contains all information about the Student * * @author * @version * **/ public class students { /** Default Constructor **/ public students() { } protected Collection data; }