package scheduler.Edit; import scheduler.ScheduleProject.*; import java.util.Collection; /** * * Home object for derived methods. * Derived from an FMSL opaque type. * * @author * @version * **/ public class Edit { /** Default Constructor **/ public Edit() { } /** The currently selected text segment is copied into the clipboard; **/ protected UserWorkSpace editCopy(UserWorkSpace uws) { return null; } /** The currently selected text segment is copied into the clipboard and removed from the workspace. **/ protected UserWorkSpace editCut(UserWorkSpace uws) { return null; } /** Searches for a string in the schedule files. **/ protected UserWorkSpace editFind(UserWorkSpace uws, String find) { return null; } /** Paste the contents of the clipboard into the currently * selected start position, replacing any selected text from start to end position. **/ protected UserWorkSpace editPaste(UserWorkSpace uws) { return null; } /** Selects all of the text on the screen. **/ protected UserWorkSpace editSelectAll(UserWorkSpace uws) { return null; } }