package scheduler.ScheduleDB;

import scheduler.RoomDB.*;
import scheduler.InstructorDB.*;
import scheduler.CourseDB.*;
import scheduler.ScheduleEntry.*;
import scheduler.Attributes.*;

import java.util.Collection;

/**
 *
 * 
         The Constraint database contains all of the Course and Time Constraints
         for the schedule.
     * 
 * @author 
 * @version 
 *
 **/

public class Constraint {

     /** Default Constructor **/
     public Constraint() {

     }

     protected CourseCon cc;

     protected TimeCon tc;

}