package testtool.TestGeneration; import testtool.Filtering.*; import testtool.Courses.*; import testtool.Courses.*; import testtool.Questions.*; import testtool.QuestionManagement.*; import testtool.TestTaking.*; import java.util.Collection; /** * * A section of a generated test that holds its questions and its * section header. If an empty string is given as the header, th *e section will be displayed in print views and to students as part of the previous section. * * @author * @version * **/ public class GeneratedSection { /** Default Constructor **/ public GeneratedSection() { } protected Collection questions; protected String header; }