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;

/**
 *
 * 
				  Holds an integer value and its locked
				  or unlocked status information for the
				  auto-generator to check.
				 * 
 * @author 
 * @version 
 *
 **/

public class LockableInteger {

     /** Default Constructor **/
     public LockableInteger() {

     }

     protected boolean isLocked;

     protected int integerValue;

}