updateScope(tensesInScope, tenses, action);
printScope(new TreeSet<Tense>(tensesInScope), "Tenses");
return true;
}
else if (command instanceof TenseCommand) {
TenseCommand tenseCommand = (TenseCommand) command;
Set<Tense> tenses = new HashSet<Tense>(tenseCommand.getTenses());
updateScope(tensesInScope, tenses, action);
printScope(new TreeSet<Tense>(tensesInScope), "Tenses");
return true;
}
else if (command instanceof TenseTagCommand) {