package testtool.File; import testtool.Tests.*; import testtool.Database.*; import testtool.StudentFunctionality.*; import java.util.Collection; /** * * The type of file data is either UntakenTestType data (which is th *e type for tests that haven't been taken yet), TakenTestType (which * is the type for tests that have been taken), or DatabaseType (which is the type that the question database is saved as). * * @author * @version * **/ public class FileType { /** Default Constructor **/ public FileType() { } protected TestType test_type; protected TakenTestType taken_test_type; protected DatabaseType db_type; }