package grader.Main; import java.util.Collection; /** * * A Mark is a string that holds the symbol. Hrange is an int for the * highest range for the mark. Lrange is an int for the lowest range for the mark. Colorlist is an array of colors represented by a number. * * @author * @version * **/ public class IndGrade { /** Default Constructor **/ public IndGrade() { } protected String mark; protected int hrange; protected int lrange; protected int color; }