package grader.Main;


import java.util.Collection;

/**
 *
 * 
        A Class is what is stored in a grade book. The ClassName component i
 *s
        the name of the class. The Section component is the section number
 *.
        The Professor component is the name of the professor. The Student
 *s
        component is the list of students in the class. The Items component is
        the list of graded items in the class.
     * 
 * @author 
 * @version 
 *
 **/

public class Class {

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

     }

     protected String className;

     protected int section;

     protected String professor;

     protected Collection<Student> stus;

     protected Collection<GradedItem> gilist;

     protected boolean useWeight;

     protected boolean requires_saving;

     protected Permit permissions;

     protected int tot;

}