Upgrade to ExtJS 3.0.0 - Released 07/06/2009
[extjs.git] / source / data / DataProxy.js
diff --git a/source/data/DataProxy.js b/source/data/DataProxy.js
deleted file mode 100644 (file)
index 88b89d1..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-/*\r
- * Ext JS Library 2.2.1\r
- * Copyright(c) 2006-2009, Ext JS, LLC.\r
- * licensing@extjs.com\r
- * \r
- * http://extjs.com/license\r
- */\r
-\r
-/**\r
- * @class Ext.data.DataProxy\r
- * @extends Ext.util.Observable\r
- * This class is an abstract base class for implementations which provide retrieval of\r
- * unformatted data objects.<br>\r
- * <p>\r
- * DataProxy implementations are usually used in conjunction with an implementation of Ext.data.DataReader\r
- * (of the appropriate type which knows how to parse the data object) to provide a block of\r
- * {@link Ext.data.Records} to an {@link Ext.data.Store}.<br>\r
- * <p>\r
- * Custom implementations must implement the load method as described in\r
- * {@link Ext.data.HttpProxy#load}.\r
- */\r
-Ext.data.DataProxy = function(){\r
-    this.addEvents(\r
-        /**\r
-         * @event beforeload\r
-         * Fires before a network request is made to retrieve a data object.\r
-         * @param {Object} this\r
-         * @param {Object} params The params object passed to the {@link #load} function\r
-         */\r
-        'beforeload',\r
-        /**\r
-         * @event load\r
-         * Fires before the load method's callback is called.\r
-         * @param {Object} this\r
-         * @param {Object} o The data object\r
-         * @param {Object} arg The callback's arg object passed to the {@link #load} function\r
-         */\r
-        'load'\r
-    );\r
-    Ext.data.DataProxy.superclass.constructor.call(this);\r
-};\r
-\r
-Ext.extend(Ext.data.DataProxy, Ext.util.Observable);
\ No newline at end of file