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; /** * * Display the available instructors and locations at the specific time of the ScheduleItem * * @author * @version * **/ public class ViewAvailability { /** Default Constructor **/ public ViewAvailability() { } protected InstructorAvailability instructorAvailability; protected LocationAvailability locationAvailability; protected ScheduleItem scheduleItem; }