package scheduler.File; import scheduler.ScheduleDB.*; import java.util.Collection; /** * * A FileSpace is an abstract model of a file space in the operatin *g environment in which the CalendarTool is run. The FileSpace is * simply a collection of zero or more Files, with no other properties modeled here. * * @author * @version * **/ public class FileSpace { /** Default Constructor **/ public FileSpace() { } protected Collection data; }