package grader2.GradingScheme;


import java.util.Collection;

/**
 *
 * 
      A representation of the color associated with a GradeRange;
    * 
 * @author 
 * @version 
 *
 **/

public class Color {

     /** Default Constructor **/
     public Color() {

     }

     protected int red;

     protected int green;

     protected int blue;

}