package grader.Main; import java.util.Collection; /** * * A Value is used for every entry in a GradeScheme. A Plus-Minus * GradeScheme for example would have 3 Value objects to represent all th *e different symbols used in the scheme (+, -, 0). Symbol is the string * entered by the instructor, Color is the color used to display the * score, and Percentage is the percentage of points awarded to the student for the associated Symbol. All fields must be entered. * * @author * @version * **/ public class Value { /** Default Constructor **/ public Value() { } protected String symbol; protected int color; protected double percentage; }