3 <title>The source code</title>
4 <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
5 <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
7 <body onload="prettyPrint();">
8 <pre class="prettyprint lang-js">/*!
10 * Copyright(c) 2006-2009 Ext JS, LLC
12 * http://www.extjs.com/license
14 Ext.Direct.Event = function(config){
\r
15 Ext.apply(this, config);
\r
17 Ext.Direct.Event.prototype = {
\r
19 getData: function(){
\r
24 Ext.Direct.RemotingEvent = Ext.extend(Ext.Direct.Event, {
\r
26 getTransaction: function(){
\r
27 return this.transaction || Ext.Direct.getTransaction(this.tid);
\r
31 Ext.Direct.ExceptionEvent = Ext.extend(Ext.Direct.RemotingEvent, {
\r
36 Ext.Direct.eventTypes = {
\r
37 'rpc': Ext.Direct.RemotingEvent,
\r
38 'event': Ext.Direct.Event,
\r
39 'exception': Ext.Direct.ExceptionEvent
\r