/**
 * Generic class for representing a breakdown of a given type
 * Section 2.3.2
 * @author Andrew Guenther
 */
package test;

public abstract class BreakdownItem<E> {
  /**
   * The percent of the test that must be comprised of E
   */
   public float value;

  /**
   * The item which this breakdown represents. This may be a keyword, difficulty value, or question type.
   */
   public E item;
}