package grader.Main; import java.util.Collection; /** * * The final grade distribution determines the scoring of the entire class *. When the Grader needs to display a letter grade for a student, it * consults this object with the student's lb to get the correct letter to display. * * @author * @version * **/ public class FinalGradeDistribution { /** Default Constructor **/ public FinalGradeDistribution() { } protected Collection values; }