package grader2.GradingScheme; import java.util.Collection; /** * * A GradeRange maps a symbol to a numberic range that the grade * represents. A color is also associated with a GradeRange for display purposes. * * @author * @version * **/ public class GradeRange { /** Default Constructor **/ public GradeRange() { } protected String symbol; protected double highValue; protected double lowValue; protected Color color; protected boolean inUse_; protected boolean isPlus_; protected boolean isMinus_; }