package grader.Main;


import java.util.Collection;

/**
 *
 *  The percentage a student recieves for this item is the percentage that the
 * student recieves of the assigned percent of the overall category. I.e. if a
 * student gets 100% on a CategoryWeight item, and that item is assigned to be 25% of its category, then the students gets 25% in that category. 
 *    Derived from an FMSL opaque type.
 * 
 * @author 
 * @version 
 *
 **/

public class CategoryWeight {

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

     }

}