package scheduler.ScheduleProject; import scheduler.Database.*; import scheduler.Generate.*; import scheduler.Edit.*; import scheduler.ViewSchedule.*; import java.util.Collection; /** * * The Clipboard is used with the Edit cut, copy, and paste operations. * * @author * @version * **/ public class UserWorkSpace { /** Default Constructor **/ public UserWorkSpace() { } protected Schedule schedule; protected PreviousState previous_state; protected String clipboard; protected Selection selection; protected String context; protected User user; }