package testtool.Test; import testtool.Question.*; import testtool.QuestionBank.*; import java.util.Collection; /** * * AdminEnv defines the administrative environment in which the test * will be taken. The possible environments are proctored, take-home, * and practice; each is described by different set of components. * * @author * @version * **/ public class AdminEnv { /** Default Constructor **/ public AdminEnv() { } protected String studentInstr; // BEGIN NESTED COMPONENTS protected Collection env; // END NESTED COMPONENTS }