261262263264265266267
public boolean accept(Action action, String[] words) { return action.equals(Action.EXIT); } public Command interpret(Language language, Action action, String[] words, String[] wordsWithConj) { return new ExitCommand(action); }