package grader.Main;


import java.util.Collection;

/**
 *
 *  The type of weighted grading: none, percent of the category, or percent of the class.  * 
 * @author 
 * @version 
 *
 **/

public class Weight {

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

     }

     protected NoWeight noWeight;

     protected CategoryWeight categoryWeight;

     protected ClassWeight classWeight;

}