messengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscord
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
781 B
36 lines
781 B
9 years ago
|
/**
|
||
|
* Base class for all Ext.direct events. An event is
|
||
|
* created after some kind of interaction with the server.
|
||
|
* The event class is essentially just a data structure
|
||
|
* to hold a Direct response.
|
||
|
*/
|
||
|
Ext.define('Ext.direct.Event', {
|
||
|
alias: 'direct.event',
|
||
|
|
||
|
status: true,
|
||
|
|
||
|
/**
|
||
|
* Creates new Event.
|
||
|
* @param {Object} [config] Config object.
|
||
|
*/
|
||
|
constructor: function(config) {
|
||
|
Ext.apply(this, config);
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* Return the name for this event.
|
||
|
* @return {String} The name of event
|
||
|
*/
|
||
|
getName: function() {
|
||
|
return this.name;
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* Return the raw data for this event.
|
||
|
* @return {Mixed} The data from the event
|
||
|
*/
|
||
|
getData: function() {
|
||
|
return this.data;
|
||
|
}
|
||
|
});
|