package schedule;
import java.util.Collection;
/**
 * Quarters are used to associate a generated schedule
 * with a specific quarter
 * @author ldavid
 */
abstract class Quarter {
	/**
	 * The quarter name, i.e. Fall 2013
	 */
    String quarterName;
    
    /**
     * A collection of schedules that are associated with this 
     * quarter
     */
    Collection<Schedule> schedules;
}