package testtool.Main; import java.util.Collection; /** * * This is the Questions that makes up the Test it contains Student comments and the answers the student selects * * @author * @version * **/ public class AnsweredQuestion extends TestQuestion { /** Default Constructor **/ public AnsweredQuestion() { super(); } protected Answer a; }