package grader2.Gradebook; import grader2.GradingScheme.*; import grader2.View.*; import grader2.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_; }