Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / src / direct / Event.js
index 8ec47e8..7551654 100644 (file)
@@ -1,34 +1,50 @@
-/*!
- * Ext JS Library 3.1.0
- * Copyright(c) 2006-2009 Ext JS, LLC
- * licensing@extjs.com
- * http://www.extjs.com/license
+/*
+
+This file is part of Ext JS 4
+
+Copyright (c) 2011 Sencha Inc
+
+Contact:  http://www.sencha.com/contact
+
+GNU General Public License Usage
+This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file.  Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
+
+If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact.
+
+*/
+/**
+ * @class Ext.direct.Event
+ * A 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.Direct.Event = function(config){\r
-    Ext.apply(this, config);\r
-}\r
-Ext.Direct.Event.prototype = {\r
-    status: true,\r
-    getData: function(){\r
-        return this.data;\r
-    }\r
-};\r
-\r
-Ext.Direct.RemotingEvent = Ext.extend(Ext.Direct.Event, {\r
-    type: 'rpc',\r
-    getTransaction: function(){\r
-        return this.transaction || Ext.Direct.getTransaction(this.tid);\r
-    }\r
-});\r
-\r
-Ext.Direct.ExceptionEvent = Ext.extend(Ext.Direct.RemotingEvent, {\r
-    status: false,\r
-    type: 'exception'\r
-});\r
-\r
-Ext.Direct.eventTypes = {\r
-    'rpc':  Ext.Direct.RemotingEvent,\r
-    'event':  Ext.Direct.Event,\r
-    'exception':  Ext.Direct.ExceptionEvent\r
-};\r
-\r
+Ext.define('Ext.direct.Event', {
+
+    /* Begin Definitions */
+
+    alias: 'direct.event',
+
+    requires: ['Ext.direct.Manager'],
+
+    /* End Definitions */
+
+    status: true,
+
+    /**
+     * Creates new Event.
+     * @param {Object} config (optional) Config object.
+     */
+    constructor: function(config) {
+        Ext.apply(this, config);
+    },
+
+    /**
+     * Return the raw data for this event.
+     * @return {Object} The data from the event
+     */
+    getData: function(){
+        return this.data;
+    }
+});
+