package testtool.File; import testtool.Tests.*; import testtool.Database.*; import testtool.StudentFunctionality.*; 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; }