package grader.View; import grader.GradingScheme.*; import grader.Gradebook.*; import grader.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 grades; protected GradingScheme scheme; protected Collection sliders; }