package scheduler.ScheduleEntry; import java.util.Collection; /** * * A Schedule Entry contains all the information for a single section of a single class in the quarter level schedule. * * @author * @version * **/ public class ScheduleEntry { /** Default Constructor **/ public ScheduleEntry() { } protected SClass class; protected SInstructorName instr; protected STime time; protected SRoom room; }