package grader2.GradingScheme; import java.util.Collection; /** * * A mark and corresponding score. * * @author * @version * **/ public class MarkItem { /** Default Constructor **/ public MarkItem() { } protected String mark_; protected double score_; }