package questions; /** * An abstract representation of a short * response */ public abstract class ShortResponse extends Response { /** * Returns a string representation of the response * @return string representation of response */ public abstract String toString(); }