package grader2.View; import grader2.GradingScheme.*; import grader2.Gradebook.*; import grader2.Category.*; import java.util.Collection; /** * * A graph can contain many Sliders. Sliders are the movable tabs on the histogram and the movable lines on the pie chart. * * @author * @version * **/ public class Slider { /** Default Constructor **/ public Slider() { } protected double iconSize_; protected String percent_; protected String letterGrade_; protected String details_; }