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; /** * * All of the information that is needed for the auto generator t *o determine how to populate a given section with appropriate quesitons. * * @author * @version * **/ public class SectionCriteria { /** Default Constructor **/ public SectionCriteria() { } protected LockableInteger targetNumber; protected LockableInteger targetLength; protected Filter filter; protected Collection databases; }