Upgrade to ExtJS 3.0.0 - Released 07/06/2009
[extjs.git] / docs / source / XmlWriter.html
diff --git a/docs/source/XmlWriter.html b/docs/source/XmlWriter.html
new file mode 100644 (file)
index 0000000..35b8e35
--- /dev/null
@@ -0,0 +1,48 @@
+<html>\r
+<head>\r
+  <title>The source code</title>\r
+    <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />\r
+    <script type="text/javascript" src="../resources/prettify/prettify.js"></script>\r
+</head>\r
+<body  onload="prettyPrint();">\r
+    <pre class="prettyprint lang-js"><div id="cls-Ext.data.XmlWriter"></div>/**
+ * @class Ext.data.XmlWriter
+ * @extends Ext.data.DataWriter
+ * DataWriter extension for writing an array or single {@link Ext.data.Record} object(s) in preparation for executing a remote CRUD action via XML.
+ */
+Ext.data.XmlWriter = Ext.extend(Ext.data.DataWriter, {
+    <div id="method-Ext.data.XmlWriter-render"></div>/**
+     * Final action of a write event.  Apply the written data-object to params.
+     * @param {String} action [Ext.data.Api.create|read|update|destroy]
+     * @param {Record[]} rs
+     * @param {Object} http params
+     * @param {Object} data object populated according to DataReader meta-data "root" and "idProperty"
+     */
+    render : function(action, rs, params, data) {
+        // no impl.
+    },
+    <div id="method-Ext.data.XmlWriter-createRecord"></div>/**
+     * createRecord
+     * @param {Ext.data.Record} rec
+     */
+    createRecord : function(rec) {
+        // no impl
+    },
+    <div id="method-Ext.data.XmlWriter-updateRecord"></div>/**
+     * updateRecord
+     * @param {Ext.data.Record} rec
+     */
+    updateRecord : function(rec) {
+        // no impl.
+
+    },
+    <div id="method-Ext.data.XmlWriter-destroyRecord"></div>/**
+     * destroyRecord
+     * @param {Ext.data.Record} rec
+     */
+    destroyRecord : function(rec) {
+        // no impl
+    }
+});</pre>    \r
+</body>\r
+</html>
\ No newline at end of file