package grader.Main; import java.util.Collection; /** * * A Graph object is something that represents a graph. A graph can either b *e a histogram or a pie chart. There is also a GradeLine that can be * adjusted on the chart, which will affect grades across all structures. * * @author * @version * **/ public class Graph { /** Default Constructor **/ public Graph() { } protected String title; protected String type; protected GradeScheme scheme; protected Collection object; protected GradedItem gradedItem; }