package grader.Main;


import java.util.Collection;

/**
 *
 * 
     BarGraph represents a bar graph that will display the spread of grades
     in a bar graph.
    
 *    Derived from an FMSL opaque type.
 * 
 * @author 
 * @version 
 *
 **/

public class BarGraph extends Graph {

     /** Default Constructor **/
     public BarGraph() {
          super();
     }

}