/** * This class implements the Ext.Direct event domain. All classes extending from * {@link Ext.direct.Provider} are included in this domain. The selectors are simply provider * id's or the wildcard "*" to match any provider. * * @protected */ Ext.define('Ext.app.domain.Direct', { extend: 'Ext.app.EventDomain', singleton: true, requires: [ 'Ext.direct.Provider' ], type: 'direct', constructor: function() { var me = this; me.callParent(); me.monitor(Ext.direct.Provider); }, match: function(target, selector) { return selector === '*' || target.id === selector; } });