package testtool.File; import testtool.Tests.*; import testtool.Database.*; import testtool.StudentFunctionality.*; import java.util.Collection; /** * * The UserWorkSpace contains all the objects that the user is * currently working on. This includes the question database and any tests that are currently being created. * * @author * @version * **/ public class UserWorkSpace { /** Default Constructor **/ public UserWorkSpace() { } protected String userID; protected Database database; protected Collection object; protected TakenTest takenTest; }