package grader.Main;


import java.util.Collection;

/**
 *
 * 
		A Student represents an individual unique member of the Class
		they are
 * contained in.  The StudentName component is the
		alphabetical name of the
 * student as given to the teacher by the
		school's student
 * information/administration department (SIS).
		The StudentID component in
 * this case is the Student's Cal Poly
		UNIX username, for other instituitions
 * the StudentID would be
		the institutional issued unique identifier.  The
 * GraderID
		component is a five-digit integer chosen randomly by the grader
	
 *	tool from the interval (00000, 99999).  The PhoneNumber
		component is the
 * Student's telephone number as given
		to the teacher by the school's studen
 *t
		information/administration department (SIS).  The EmailAddress
		componen
 *t is the Student's electronic mailing address as given
		to the teacher by th
 *e school's student
		information/administration department (SIS).  The Note
 * component
		holds any additional textual
	
 *	descriptions/information/reminders/markups otherwise not
		accounted for in the components above.
	 * 
 * @author 
 * @version 
 *
 **/

public class Student {

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

     }

     protected String stuName;

     protected String stuID;

     protected int eMPLID;

     protected int graderID;

     protected String phoneNumber;

     protected String emailAddress;

     protected String notes;

     protected Collection<StudentGI> gilist;

     protected int totalpts;

}