package grader2.Category;

import grader2.GradingScheme.*;
import grader2.View.*;
import grader2.Gradebook.*;

import java.util.Collection;

/**
 *
 * 
            dueDate is the time and date that this GradedItem is due.  This
 * is stored
            as seconds since the Epoch, to allow precise
 * measurement.  isOverridingDefaults
            is a boolean value; if true,
 * default grading options for this Item are overridden.
            Otherwise
 *, defaults inherited from the parent are used.  studentGradedItem
 *s
            is a list of StudentGradedItem objects, which are each a GradedItem owned by
            a particular student.
         * 
 * @author 
 * @version 
 *
 **/

public class GradedItem extends Category {

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

     protected String dueDate;

     protected boolean isOverDef;

     protected Collection<StudentGradedItem> studGradedItem;

}