package grader.item; import grader.class_.*; import java.util.Collection; /** * * This displays information about the current weight and raw score of the item. * * @author * @version * **/ public class WeightAndRawScore { /** Default Constructor **/ public WeightAndRawScore() { } protected int weight; protected int rawscore; }