package grader.Main; import java.util.Collection; /** * * A Report is composed of one or more GradedItems organized by what the user chooses. It can show statistics. * * @author * @version * **/ public class Report { /** Default Constructor **/ public Report() { } protected Collection object; protected boolean showStatistics_; protected OrganizeBy organizeBy; }