package grader.Main; import java.util.Collection; /** * * PieChart represents a pie chart that will display the spread of grades in a pie chart. * Derived from an FMSL opaque type. * * @author * @version * **/ public class PieChart extends Graph { /** Default Constructor **/ public PieChart() { super(); } }