package scheduler.ManualEdit;

import scheduler.Database.*;
import scheduler.InstructorDB.*;
import scheduler.CourseDB.*;
import scheduler.LocationDB.*;
import scheduler.ViewSchedule.*;
import scheduler.Conflict.*;

import java.util.Collection;

/**
 *
 *  Home object for derived methods. 
 *    Derived from an FMSL opaque type.
 * 
 * @author 
 * @version 
 *
 **/

public class ManualEdit {

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

     }

     /** 
 **/
     protected EditCourseItem courseEditPopup(ScheduleItem c) {
          return null;
     }

     /** display the given courses information **/
     protected ScheduleItem lockAll(ScheduleItem c) {
          return null;
     }

     /** Display the given courses information **/
     protected ScheduleItem lockCourse(ScheduleItem c) {
          return null;
     }

     /**  Display the given courses information  **/
     protected ScheduleItem manualEditCourse(EditCourseItem c, ScheduleItem ec) {
          return null;
     }

}