package grader.Main; import java.util.Collection; /** * * A PredictionItem contains a boolean flag to indicate if the score ha *s been changed for a particular GradedItem in a Prediction's whatif list. * * @author * @version * **/ public class PredictionItem { /** Default Constructor **/ public PredictionItem() { } protected StudentGI stugi; protected boolean chg; }