package testtool.Question;


import java.util.Collection;

/**
 *
 * 
			An instructor-supplied answer that is the correct answer for all the
 * answer areas except
			for the ShortAnswerArea, EssayAnswerArea, and
 * ProgramCodeAnswerArea object. For those
			three answer areas, the KeyAnswer object is the "example correct answer".
		
 *    Derived from an FMSL opaque type.
 * 
 * @author 
 * @version 
 *
 **/

public class KeyAnswer extends Answer {

     /** Default Constructor **/
     public KeyAnswer() {
          super();
     }

}