private void throwEventToListeners(CommandLineEvent event) {
Iterator<CommandLineListener> it = this.listeners.iterator();
while(it.hasNext()) {
CommandLineListener listener = it.next();
listener.actionPerformed(event);
}
}
public void setSpeechBlocking(boolean block) {
this.speechBlock = block;