package scheduler.ViewSchedule;

import scheduler.Database.*;
import scheduler.InstructorDB.*;
import scheduler.CourseDB.*;
import scheduler.LocationDB.*;
import scheduler.Conflict.*;
import scheduler.ScheduleQuality.*;
import scheduler.Generate.*;

import java.util.Collection;

/**
 *
 * ScheduleItem represents a course generated from the Scheduler * 
 * @author 
 * @version 
 *
 **/

public class ScheduleItem {

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

     }

     protected Collection<Course> course;

     protected Collection<Location> location;

     protected Collection<Instructor> instructor;

     protected Collection<String> day;

     protected Time start_time;

     protected Time end_time;

     protected int section;

     protected boolean lock;

}