package grader.Main; import java.util.Collection; /** * * A report can be organized by the date the graded item is dure or the name of the graded item * * @author * @version * **/ public class OrganizeBy { /** Default Constructor **/ public OrganizeBy() { } protected Date date; protected String mark; protected int score; }