package grader.Main;


import java.util.Collection;

/**
 *
 *  A single bar on the histogram.  * 
 * @author 
 * @version 
 *
 **/

public class HistogramBar {

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

     }

     protected double percentage;

     protected int numberOfScores;

     protected Color color;

}