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<Integer> ptsPossible;

     protected int position;

}