package grader.Main;


import java.util.Collection;

/**
 *
 *  The object containing all graphical representations of grade distribution.  * 
 * @author 
 * @version 
 *
 **/

public class Graphs {

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

     }

     protected String name;

     protected Histogram histogram;

     protected PieChart pieChart;

     protected Thresholds curve;

}