BTW, here is some of the main class:
 
public static final void main(String[] args) {
  // create an application main class using HiveMind factory
  Registry registry = RegistryBuilder.constructDefaultRegistry();
  VTMain main = (VTMain) registry.getService(VTMain.class);
  main.execute();
  registry.shutdown();
}
 
  public void setEventBroker(EventBroker broker) {
    this.broker = broker;
  }
 
I do get the broker reference, and can call it and get into the dispatcher.
 
John

Reply via email to