package questions; /** * An abstract represenation of a set of * answers to a question */ public abstract class Answer { /** * Returns the correct response to the * answer * @return the correct response to be compared against the student's response */ public abstract boolean equals(Response r); }