/* * QuestionInterface.java * * Created on September 28, 2007, 1:00 PM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ /** * * @author dfleck */ public interface QuestionInterface { /** Ask the question given in the String, and assume only characters in the * char array passed in are valid. */ public char askQuestion(String question, char [] validAnswers) throws NotACharException, NotAValidCharException; }