package grader.View; import grader.GradingScheme.*; import grader.Gradebook.*; import grader.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_; }