package grader.Main; import java.util.Collection; /** * * beginR is the smallest number is the range and endR is the end of * the range 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 Range { /** Default Constructor **/ public Range() { } protected int beginR_; protected int endR_; protected boolean show_; protected Collection object; }