package curve;

import java.util.Collection;

/**
 * Contains the collection of letter grade boundaries (A, B, C, D, F) to represent
 * the class curve.
 * @author crahm
 */
public abstract class GradeCurve
{
   /**
    * Collection of LetterGradeBoundary that represent the current class curve.
    */
   Collection<LetterGradeBoundary> letterGrades;
}