package curve;

import java.awt.Color;

/**
 * Object that represents a letter grade.
 * Contains letter, color, and low percentage boundary.
 * @author crahm
 */
public abstract class LetterGradeBoundary
{
   /**
    * Low percentange boundary for the letter grade.
    */
   double lowPercentageBoundary;
   
   /**
    * Letter grade for the given boundary.
    */
   String letterGrade;
   
   /**
    * Color that represents the letter grade boundary.  This color will be present in the histogram,
    * pie chart, curving tool, and other features of the grader tool that use letter grade boundaries.
    */
   public Color color;
}