package grader.Main; import java.util.Collection; /** * * A FileSpace is an abstract model of a file space in the operatin *g environment in which the EasyGrader is run. The FileSpace is simpl *y 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; }