package questions;

/**
 * Abstract representatino for a short
 * answer question
 */
public abstract class ShortAnswer extends Answer
{
   private Response answer;
   
   /**
    * Returns the correct response to the
    * question
    * @return the correct response
    * pre:
       // Each Answer only has one correct response
    */
   public abstract Response getCorrectResponse();
}