private final List<UIContextListener> uiContextListeners = new ArrayList<UIContextListener>();
public UIContext(final Application application) {
this.application = application;
this.uiContextID = ponyUIContextIDcount.incrementAndGet();
this.communicationSanityChecker = new CommunicationSanityChecker(this);
this.application.registerUIContext(this);
this.communicationSanityChecker.start();
}