/**
 * This class represents the answer to a FillInTheBlankQuestion.
 *
 * @author Kim Paterson
 * @author Mitchell Rosen
 */
package question;

import java.util.Collection;

public abstract class FillInTheBlankAnswer extends StringsAnswer { }