package grader.Main;


import java.util.Collection;

/**
 *
 * 
      A GradeScheme is applied to a GradedItem to change how instructors
      enter grades and how the GradedItem is scored.
     * 
 * @author 
 * @version 
 *
 **/

public class GradeScheme {

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

     }

     protected Collection<Value> values;

     protected String name;

}