package testtool.Main; import java.util.Collection; /** * * A question in a test knows its place in the test, the number of points it is worth, and the constraints that generated it. * * @author * @version * **/ public class TestQuestion extends Question { /** Default Constructor **/ public TestQuestion() { super(); } protected int point; protected int questionNumber; protected ConstraintSet constraints; }