package grader.Main;


import java.util.Collection;

/**
 *
 * 
         median is the median of the GradedItems its given and show is a
 * boolean
         that tells whether or not the show this stat in statistics.
     * 
 * @author 
 * @version 
 *
 **/

public class Median {

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

     }

     protected int median_;

     protected boolean show_;

     protected Collection<GradedItem> object;

}