package grader.Main;


import java.util.Collection;

/**
 *
 * 
     Graph is a generic interface for any concrete graph object to inherit
 *.
     PieChart for example, would implement this interface and provide a Draw
     method to display the pie chart.
    
 *    Derived from an FMSL opaque type.
 * 
 * @author 
 * @version 
 *
 **/

public class Graph {

     /** Default Constructor **/
     public Graph() {

     }

}