updateScope(verbsInScope, conjugatedVerbs, action);
printScope(new TreeSet<ConjugatedVerb>(verbsInScope), "Verbs");
return true;
}
else if (command instanceof VerbClassCommand) {
VerbClassCommand verbClassCommand = (VerbClassCommand) command;
Set<VerbTag> verbTags = new HashSet<VerbTag>(verbClassCommand.getVerbTags());
Set<ConjugatedVerb> verbs = new HashSet<ConjugatedVerb>();
for (VerbTag verbTag : verbTags) {
verbs.addAll(verbTag.getMembers());
}
updateScope(verbsInScope, verbs, action);