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;

/**
 *
 *  Scheduler displays the given instructor on a schedule view * 
 * @author 
 * @version 
 *
 **/

public class InstructorScheduleView {

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

     }

     protected Collection<Instructor> data;

}