package grader.GradeTable;

import grader.PieChart.*;

import java.util.Collection;

/**
 *
 * aga is AbsoluteGradeArray and rga is RelativeGradeArray * 
 * @author 
 * @version 
 *
 **/

public class GradeTable {

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

     }

     /** Creates the GradeTable and populates it with the correct percentage when the GradeTable grade scale functionality is called **/
     protected GradeTable createGradeTable(GradeScale gradeScale) {
          return null;
     }

     /** Updates the gradescale view with the instructor's input in the Grade Table window **/
     protected GradeScale modifyGradeTable(GradeScale gradeScale) {
          return null;
     }

     /** Saves the GradeTable data into the GradeScale **/
     protected GradeScale saveGradeTable(GradeScale gradeScale) {
          return null;
     }

     protected Collection<GradeArrayBin> aga;

     protected Collection<GradeArrayBin> rga;

}