package grader.Main;


import java.util.Collection;

/**
 *
 * 
		  A Prediction is only associated with one Student, the Student
		  whose
 * GraderID is associated with the gradebook retrieved by
		  the Student from
 * the instructor. clsGIlist is the list of
		  GradedItems from a class and
 * whatifs begin as the list of
		  Student GradedItems (StudentGI) taken from the Gradebook.
		  * 
 * @author 
 * @version 
 *
 **/

public class Prediction {

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

     }

     protected Class cls;

     protected Collection<PredictionItem> whatifs;

}