package grader.Main; import java.util.Collection; /** * * stdDev is the standard deviation 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 StdDev { /** Default Constructor **/ public StdDev() { } protected StdDev stdDev; protected boolean show_; protected Collection object; }