package grader.Main;


import java.util.Collection;

/**
 *
 *  The histogram graph.  * 
 * @author 
 * @version 
 *
 **/

public class Histogram {

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

     }

     protected String Name;

     protected Collection<HistogramBar> stars;

}