/** * A generic channel for posting reload events. */ qx.Class.define("org.argeo.ria.event.UIBus", { type : "singleton", extend : qx.core.Object, properties :{ listeners : { check : "Map" }, notifiers : { check : "Array" } }, construct : function(){ this.base(arguments); this.setListeners({}); this.setNotifiers([]); }, members : { addListener : function(eventType, listenerFunction, contextObject){ var notifiers = this.getNotifiers(); for(var i=0;i