package grader.Main; import java.util.Collection; /** * * A FileSpace is an abstract model of a file space in the operating environment in which the grader tool is run. * * @author * @version * **/ public class FileSpace { /** Default Constructor **/ public FileSpace() { } protected Collection data; }