package testtool.Question; import java.util.Collection; /** * * The question as it exists in an untaken test. * * @author * @version * **/ public class TestQuestion extends FullQuestion { /** Default Constructor **/ public TestQuestion() { super(); } protected Collection ptsPossible; protected int position; }