package grader.student;

import grader.class_.*;

import java.util.Collection;

/**
 *
 *  
		A student contains the StudentInfo object.
	 * 
 * @author 
 * @version 
 *
 **/

public class Student {

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

     }

     protected StudentInfo studentinfo;

     protected Collection<Integer> grades;

}