package grader.View; import grader.GradingScheme.*; import grader.Gradebook.*; import grader.Category.*; import java.util.Collection; /** * * Histogram contains all the data needed to create a GUI histogram. * * @author * @version * **/ public class Histogram { /** Default Constructor **/ public Histogram() { } protected int rangeHigh_; protected int rangeLow_; protected boolean isColored_; protected double iconSize_; protected int opacity_; protected boolean isTabOutlinedColored_; protected boolean isTabColored_; protected Graph graph; protected boolean isDot_; protected boolean isColoredSections_; protected String dotLink_; }