updateScope(verbsInScope, conjugatedVerbs, action);
printScope(new TreeSet<ConjugatedVerb>(verbsInScope), "Verbs");
return true;
}
else if (command instanceof ConjugatedVerbCommand) {
ConjugatedVerbCommand conjugatedVerbCommand = (ConjugatedVerbCommand) command;
Set<ConjugatedVerb> conjugatedVerbs = new HashSet<ConjugatedVerb>(conjugatedVerbCommand.getConjugatedVerbs());
updateScope(verbsInScope, conjugatedVerbs, action);
printScope(new TreeSet<ConjugatedVerb>(verbsInScope), "Verbs");
return true;
}
else if (command instanceof VerbClassCommand) {