package grader.Main; import java.util.Collection; /** * * avg is the average of the GradedItems its given and show is a * boolean that tells whether or not the show this stat in statistics. * * @author * @version * **/ public class Average { /** Default Constructor **/ public Average() { } protected int avg_; protected boolean show_; protected Collection object; }