package grader.Main; import java.util.Collection; /** * * A Grade object is something that represents each grade. A grade is given *a symbol to represent it, and possibly a value that it will represent *. It also has a specific color and range by which the grade will be applied. * * @author * @version * **/ public class Grade { /** Default Constructor **/ public Grade() { } protected Color color; protected Range range; protected String symbol; protected int worth; }