package grader2.View; import grader2.GradingScheme.*; import grader2.Gradebook.*; import grader2.Category.*; import java.util.Collection; /** * * isLocked is a boolean value that, if true, means the Graph cannot * be edited. Otherwise, the graph is editable. studentGrades is a * float array of grades used in this graph. scheme is the * GradingScheme used for this graph (including the grade range), and * sliders is a list of Slider objects on this Graph (that determine the grade range). * * @author * @version * **/ public class Graph { /** Default Constructor **/ public Graph() { } protected boolean isLocked_; protected Collection object; protected GradingScheme scheme_; protected Collection object; }