package grader.Gradebook;

import grader.GradingScheme.*;
import grader.View.*;
import grader.Category.*;

import java.util.Collection;

/**
 *
 * 
         Student contains information on a specific student and many Student 
         objects can exist in one gradebook. 
       * 
 * @author 
 * @version 
 *
 **/

public class Student {

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

     }

     protected int emplID_;

     protected String firstName_;

     protected String lastName_;

     protected String userName_;

     protected String email_;

     protected String smajor_;

     protected class_ class_;

     protected double units_;

     protected String status_;

     protected boolean isFerpa_;

}