package grader.Main;


import java.util.Collection;

/**
 *
 * 
		A segmentName is a string that holds the name of the segment.
	
 *	Percentage is an int that holds the percentage of the segment.
		NumStudent
 *s is an int that holds the number of students in that
		segment.  IndGrade i
 *s an individual grade that allows us to 
                access the color of that grade.
	 * 
 * @author 
 * @version 
 *
 **/

public class Segment {

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

     }

     protected String segmentName;

     protected int percentage;

     protected int numStudents;

     protected IndGrade indGrade;

}