package scheduler.ScheduleDB; import scheduler.RoomDB.*; import scheduler.InstructorDB.*; import scheduler.CourseDB.*; import scheduler.ScheduleEntry.*; import scheduler.Attributes.*; import java.util.Collection; /** * * The time contraint table holds a pairing of all the time constraints for the given quarter. * * @author * @version * **/ public class TimeCon { /** Default Constructor **/ public TimeCon() { } protected String courseTC; protected int roomTC; protected String instructorTC; protected String dayOfWeekTC; protected int timeTC; }