package testtool.Main;


import java.util.Collection;

/**
 *
 * This object holds the grades for a answered question, this can be a percentag
 *e correct a problem is, and a boolean representing whether the question has been graded  * 
 * @author 
 * @version 
 *
 **/

public class GradedQuestion extends AnsweredQuestion {

     /** Default Constructor **/
     public GradedQuestion() {
          super();
     }

     protected int percentCorrect_;

     protected boolean isGraded_;

}