package gradebook;

import java.util.Collection;

/**
 * A gradedItem category (eg. Test, Homework, Lab).
 */
public class Category{
   /**
    * the name of the category.
    */
	String name;
   /**
    * the parent category if there is one, null otherwise.
    */
	Category parentCategory;
   /**
    * child categories if the are any
    */
	Collection<Category> subCategories;
}