package grader1.GradeTable;

import grader1.PieChart.*;

/**
 *
 * 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<String> aga;

     protected Collection<String> aga;

}