Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / output / Ext.data.NodeInterface.js
1 Ext.data.JsonP.Ext_data_NodeInterface({
2   "allMixins": [
3
4   ],
5   "deprecated": null,
6   "docauthor": null,
7   "members": {
8     "cfg": [
9
10     ],
11     "method": [
12       {
13         "deprecated": null,
14         "alias": null,
15         "protected": false,
16         "tagname": "method",
17         "href": "Base3.html#Ext-Base-method-addStatics",
18         "shortDoc": "Add / override static properties of this class. ...",
19         "static": true,
20         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
21         "private": false,
22         "params": [
23           {
24             "type": "Object",
25             "optional": false,
26             "doc": "\n",
27             "name": "members"
28           }
29         ],
30         "name": "addStatics",
31         "owner": "Ext.Base",
32         "doc": "<p>Add / override static properties of this class.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.addStatics({\n    someProperty: 'someValue',      // My.cool.Class.someProperty = 'someValue'\n    method1: function() { ... },    // My.cool.Class.method1 = function() { ... };\n    method2: function() { ... }     // My.cool.Class.method2 = function() { ... };\n});\n</code></pre>\n",
33         "linenr": 388,
34         "return": {
35           "type": "Ext.Base",
36           "doc": "<p>this</p>\n"
37         },
38         "html_filename": "Base3.html"
39       },
40       {
41         "deprecated": null,
42         "alias": null,
43         "protected": false,
44         "tagname": "method",
45         "href": "NodeInterface.html#Ext-data-NodeInterface-method-appendChild",
46         "shortDoc": "Insert node(s) as the last child node of this node. ...",
47         "static": false,
48         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
49         "private": false,
50         "params": [
51           {
52             "type": "Node/Array",
53             "optional": false,
54             "doc": "<p>The node or Array of nodes to append</p>\n",
55             "name": "node"
56           },
57           {
58             "type": "Object",
59             "optional": false,
60             "doc": "\n",
61             "name": "suppressEvents"
62           },
63           {
64             "type": "Object",
65             "optional": false,
66             "doc": "\n",
67             "name": "suppressNodeUpdate"
68           }
69         ],
70         "name": "appendChild",
71         "owner": "Ext.data.NodeInterface",
72         "doc": "<p>Insert node(s) as the last child node of this node.</p>\n\n\n<p>If the node was previously a child node of another parent node, it will be removed from that node first.</p>\n\n",
73         "linenr": 332,
74         "return": {
75           "type": "Node",
76           "doc": "<p>The appended node if single append, or null if an array was passed</p>\n"
77         },
78         "html_filename": "NodeInterface.html"
79       },
80       {
81         "deprecated": null,
82         "alias": null,
83         "protected": false,
84         "tagname": "method",
85         "href": "NodeInterface.html#Ext-data-NodeInterface-method-bubble",
86         "shortDoc": "Bubbles up the tree from this node, calling the specified function with each node. ...",
87         "static": false,
88         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
89         "private": false,
90         "params": [
91           {
92             "type": "Function",
93             "optional": false,
94             "doc": "<p>The function to call</p>\n",
95             "name": "fn"
96           },
97           {
98             "type": "Object",
99             "optional": true,
100             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the current Node.</p>\n",
101             "name": "scope"
102           },
103           {
104             "type": "Array",
105             "optional": true,
106             "doc": "<p>(optional) The args to call the function with (default to passing the current Node)</p>\n",
107             "name": "args"
108           }
109         ],
110         "name": "bubble",
111         "owner": "Ext.data.NodeInterface",
112         "doc": "<p>Bubbles up the tree from this node, calling the specified function with each node. The arguments to the function\nwill be the args provided or the current node. If the function returns false at any point,\nthe bubble is stopped.</p>\n",
113         "linenr": 707,
114         "return": {
115           "type": "void",
116           "doc": "\n"
117         },
118         "html_filename": "NodeInterface.html"
119       },
120       {
121         "deprecated": null,
122         "alias": null,
123         "protected": false,
124         "tagname": "method",
125         "href": "Base3.html#Ext-Base-method-callOverridden",
126         "shortDoc": "Call the original method that was previously overridden with Ext.Base.override\n\nExt.define('My.Cat', {\n    constructo...",
127         "static": false,
128         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
129         "private": false,
130         "params": [
131           {
132             "type": "Array/Arguments",
133             "optional": false,
134             "doc": "<p>The arguments, either an array or the <code>arguments</code> object</p>\n",
135             "name": "args"
136           }
137         ],
138         "name": "callOverridden",
139         "owner": "Ext.Base",
140         "doc": "<p>Call the original method that was previously overridden with <a href=\"#/api/Ext.Base-method-override\" rel=\"Ext.Base-method-override\" class=\"docClass\">Ext.Base.override</a></p>\n\n<pre><code>Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n</code></pre>\n",
141         "linenr": 269,
142         "return": {
143           "type": "Mixed",
144           "doc": "<p>Returns the result after calling the overridden method</p>\n"
145         },
146         "html_filename": "Base3.html"
147       },
148       {
149         "deprecated": null,
150         "alias": null,
151         "protected": true,
152         "tagname": "method",
153         "href": "Base3.html#Ext-Base-method-callParent",
154         "shortDoc": "Call the parent's overridden method. ...",
155         "static": false,
156         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
157         "private": false,
158         "params": [
159           {
160             "type": "Array/Arguments",
161             "optional": false,
162             "doc": "<p>The arguments, either an array or the <code>arguments</code> object\nfrom the current method, for example: <code>this.callParent(arguments)</code></p>\n",
163             "name": "args"
164           }
165         ],
166         "name": "callParent",
167         "owner": "Ext.Base",
168         "doc": "<p>Call the parent's overridden method. For example:</p>\n\n<pre><code>Ext.define('My.own.A', {\n    constructor: function(test) {\n        alert(test);\n    }\n});\n\nExt.define('My.own.B', {\n    extend: 'My.own.A',\n\n    constructor: function(test) {\n        alert(test);\n\n        this.callParent([test + 1]);\n    }\n});\n\nExt.define('My.own.C', {\n    extend: 'My.own.B',\n\n    constructor: function() {\n        alert(\"Going to call parent's overriden constructor...\");\n\n        this.callParent(arguments);\n    }\n});\n\nvar a = new My.own.A(1); // alerts '1'\nvar b = new My.own.B(1); // alerts '1', then alerts '2'\nvar c = new My.own.C(2); // alerts \"Going to call parent's overriden constructor...\"\n                         // alerts '2', then alerts '3'\n</code></pre>\n",
169         "linenr": 124,
170         "return": {
171           "type": "Mixed",
172           "doc": "<p>Returns the result from the superclass' method</p>\n"
173         },
174         "html_filename": "Base3.html"
175       },
176       {
177         "deprecated": null,
178         "alias": null,
179         "protected": false,
180         "tagname": "method",
181         "href": "NodeInterface.html#Ext-data-NodeInterface-method-cascadeBy",
182         "shortDoc": "Cascades down the tree from this node, calling the specified function with each node. ...",
183         "static": false,
184         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
185         "private": false,
186         "params": [
187           {
188             "type": "Function",
189             "optional": false,
190             "doc": "<p>The function to call</p>\n",
191             "name": "fn"
192           },
193           {
194             "type": "Object",
195             "optional": true,
196             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the current Node.</p>\n",
197             "name": "scope"
198           },
199           {
200             "type": "Array",
201             "optional": true,
202             "doc": "<p>(optional) The args to call the function with (default to passing the current Node)</p>\n",
203             "name": "args"
204           }
205         ],
206         "name": "cascadeBy",
207         "owner": "Ext.data.NodeInterface",
208         "doc": "<p>Cascades down the tree from this node, calling the specified function with each node. The arguments to the function\nwill be the args provided or the current node. If the function returns false at any point,\nthe cascade is stopped on that branch.</p>\n",
209         "linenr": 734,
210         "return": {
211           "type": "void",
212           "doc": "\n"
213         },
214         "html_filename": "NodeInterface.html"
215       },
216       {
217         "deprecated": null,
218         "alias": null,
219         "protected": false,
220         "tagname": "method",
221         "href": "NodeInterface.html#Ext-data-NodeInterface-method-collapse",
222         "shortDoc": "Collapse this node. ...",
223         "static": false,
224         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
225         "private": false,
226         "params": [
227           {
228             "type": "Function",
229             "optional": false,
230             "doc": "<p>(Optional) True to recursively collapse all the children</p>\n",
231             "name": "recursive"
232           },
233           {
234             "type": "Function",
235             "optional": false,
236             "doc": "<p>(Optional) The function to execute once the collapse completes</p>\n",
237             "name": "callback"
238           },
239           {
240             "type": "Object",
241             "optional": false,
242             "doc": "<p>(Optional) The scope to run the callback in</p>\n",
243             "name": "scope"
244           }
245         ],
246         "name": "collapse",
247         "owner": "Ext.data.NodeInterface",
248         "doc": "<p>Collapse this node.</p>\n",
249         "linenr": 1006,
250         "return": {
251           "type": "void",
252           "doc": "\n"
253         },
254         "html_filename": "NodeInterface.html"
255       },
256       {
257         "deprecated": null,
258         "alias": null,
259         "protected": false,
260         "tagname": "method",
261         "href": "NodeInterface.html#Ext-data-NodeInterface-method-collapseChildren",
262         "shortDoc": "Collapse all the children of this node. ...",
263         "static": false,
264         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
265         "private": false,
266         "params": [
267           {
268             "type": "Function",
269             "optional": false,
270             "doc": "<p>(Optional) True to recursively collapse all the children</p>\n",
271             "name": "recursive"
272           },
273           {
274             "type": "Function",
275             "optional": false,
276             "doc": "<p>(Optional) The function to execute once all the children are collapsed</p>\n",
277             "name": "callback"
278           },
279           {
280             "type": "Object",
281             "optional": false,
282             "doc": "<p>(Optional) The scope to run the callback in</p>\n",
283             "name": "scope"
284           }
285         ],
286         "name": "collapseChildren",
287         "owner": "Ext.data.NodeInterface",
288         "doc": "<p>Collapse all the children of this node.</p>\n",
289         "linenr": 1043,
290         "return": {
291           "type": "void",
292           "doc": "\n"
293         },
294         "html_filename": "NodeInterface.html"
295       },
296       {
297         "deprecated": null,
298         "alias": null,
299         "protected": false,
300         "tagname": "method",
301         "href": "NodeInterface.html#Ext-data-NodeInterface-method-contains",
302         "shortDoc": "Returns true if this node is an ancestor (at any point) of the passed node. ...",
303         "static": false,
304         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
305         "private": false,
306         "params": [
307           {
308             "type": "Node",
309             "optional": false,
310             "doc": "\n",
311             "name": "node"
312           }
313         ],
314         "name": "contains",
315         "owner": "Ext.data.NodeInterface",
316         "doc": "<p>Returns true if this node is an ancestor (at any point) of the passed node.</p>\n",
317         "linenr": 815,
318         "return": {
319           "type": "Boolean",
320           "doc": "\n"
321         },
322         "html_filename": "NodeInterface.html"
323       },
324       {
325         "deprecated": null,
326         "alias": null,
327         "protected": false,
328         "tagname": "method",
329         "href": "NodeInterface.html#Ext-data-NodeInterface-method-copy",
330         "shortDoc": "Creates a copy (clone) of this Node. ...",
331         "static": false,
332         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
333         "private": false,
334         "params": [
335           {
336             "type": "String",
337             "optional": true,
338             "doc": "<p>(optional) A new id, defaults to this Node's id. See <code>id</code>.</p>\n",
339             "name": "id"
340           },
341           {
342             "type": "Boolean",
343             "optional": true,
344             "doc": "<p>(optional) <p>If passed as <code>true</code>, all child Nodes are recursively copied into the new Node.</p></p>\n\n<p>If omitted or false, the copy will have no child Nodes.</p>\n\n",
345             "name": "deep"
346           }
347         ],
348         "name": "copy",
349         "owner": "Ext.data.NodeInterface",
350         "doc": "<p>Creates a copy (clone) of this Node.</p>\n",
351         "linenr": 475,
352         "return": {
353           "type": "Node",
354           "doc": "<p>A copy of this Node.</p>\n"
355         },
356         "html_filename": "NodeInterface.html"
357       },
358       {
359         "deprecated": null,
360         "alias": null,
361         "protected": false,
362         "tagname": "method",
363         "href": "Base3.html#Ext-Base-method-create",
364         "shortDoc": "Create a new instance of this Class. ...",
365         "static": true,
366         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
367         "private": false,
368         "params": [
369
370         ],
371         "name": "create",
372         "owner": "Ext.Base",
373         "doc": "<p>Create a new instance of this Class.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.create({\n    someConfig: true\n});\n</code></pre>\n\n<p>All parameters are passed to the constructor of the class.</p>\n",
374         "linenr": 329,
375         "return": {
376           "type": "Object",
377           "doc": "<p>the created instance.</p>\n"
378         },
379         "html_filename": "Base3.html"
380       },
381       {
382         "deprecated": null,
383         "alias": null,
384         "protected": false,
385         "tagname": "method",
386         "href": "Base3.html#Ext-Base-method-createAlias",
387         "shortDoc": "Create aliases for existing prototype methods. ...",
388         "static": true,
389         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
390         "private": false,
391         "params": [
392           {
393             "type": "String/Object",
394             "optional": false,
395             "doc": "<p>The new method name, or an object to set multiple aliases. See\n<a href=\"#/api/Ext.Function-method-flexSetter\" rel=\"Ext.Function-method-flexSetter\" class=\"docClass\">flexSetter</a></p>\n",
396             "name": "alias"
397           },
398           {
399             "type": "String/Object",
400             "optional": false,
401             "doc": "<p>The original method name</p>\n",
402             "name": "origin"
403           }
404         ],
405         "name": "createAlias",
406         "owner": "Ext.Base",
407         "doc": "<p>Create aliases for existing prototype methods. Example:</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    method1: function() { ... },\n    method2: function() { ... }\n});\n\nvar test = new My.cool.Class();\n\nMy.cool.Class.createAlias({\n    method3: 'method1',\n    method4: 'method2'\n});\n\ntest.method3(); // test.method1()\n\nMy.cool.Class.createAlias('method5', 'method3');\n\ntest.method5(); // test.method3() -&gt; test.method1()\n</code></pre>\n",
408         "linenr": 648,
409         "return": {
410           "type": "void",
411           "doc": "\n"
412         },
413         "html_filename": "Base3.html"
414       },
415       {
416         "deprecated": null,
417         "alias": null,
418         "protected": false,
419         "tagname": "method",
420         "href": "NodeInterface.html#Ext-data-NodeInterface-method-createNode",
421         "shortDoc": "Ensures that the passed object is an instance of a Record with the NodeInterface applied ...",
422         "static": false,
423         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
424         "private": false,
425         "params": [
426           {
427             "type": "Object",
428             "optional": false,
429             "doc": "\n",
430             "name": "node"
431           }
432         ],
433         "name": "createNode",
434         "owner": "Ext.data.NodeInterface",
435         "doc": "<p>Ensures that the passed object is an instance of a Record with the NodeInterface applied</p>\n",
436         "linenr": 214,
437         "return": {
438           "type": "Boolean",
439           "doc": "\n"
440         },
441         "html_filename": "NodeInterface.html"
442       },
443       {
444         "deprecated": null,
445         "alias": null,
446         "protected": false,
447         "tagname": "method",
448         "href": "NodeInterface.html#Ext-data-NodeInterface-method-decorate",
449         "shortDoc": "This method allows you to decorate a Record's prototype to implement the NodeInterface. ...",
450         "static": true,
451         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
452         "private": false,
453         "params": [
454           {
455             "type": "Ext.data.Record",
456             "optional": false,
457             "doc": "<p>The Record you want to decorate the prototype of.</p>\n",
458             "name": "record"
459           }
460         ],
461         "name": "decorate",
462         "owner": "Ext.data.NodeInterface",
463         "doc": "<p>This method allows you to decorate a Record's prototype to implement the NodeInterface.\nThis adds a set of methods, new events, new properties and new fields on every Record\nwith the same Model as the passed Record.</p>\n",
464         "linenr": 12,
465         "return": {
466           "type": "void",
467           "doc": "\n"
468         },
469         "html_filename": "NodeInterface.html"
470       },
471       {
472         "deprecated": null,
473         "alias": null,
474         "protected": false,
475         "tagname": "method",
476         "href": "NodeInterface.html#Ext-data-NodeInterface-method-destroy",
477         "shortDoc": "Destroys the node. ...",
478         "static": false,
479         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
480         "private": false,
481         "params": [
482           {
483             "type": "Object",
484             "optional": false,
485             "doc": "\n",
486             "name": "silent"
487           }
488         ],
489         "name": "destroy",
490         "owner": "Ext.data.NodeInterface",
491         "doc": "<p>Destroys the node.</p>\n",
492         "linenr": 512,
493         "return": {
494           "type": "void",
495           "doc": "\n"
496         },
497         "html_filename": "NodeInterface.html"
498       },
499       {
500         "deprecated": null,
501         "alias": null,
502         "protected": false,
503         "tagname": "method",
504         "href": "NodeInterface.html#Ext-data-NodeInterface-method-eachChild",
505         "shortDoc": "Interates the child nodes of this node, calling the specified function with each node. ...",
506         "static": false,
507         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
508         "private": false,
509         "params": [
510           {
511             "type": "Function",
512             "optional": false,
513             "doc": "<p>The function to call</p>\n",
514             "name": "fn"
515           },
516           {
517             "type": "Object",
518             "optional": true,
519             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the current Node in the iteration.</p>\n",
520             "name": "scope"
521           },
522           {
523             "type": "Array",
524             "optional": true,
525             "doc": "<p>(optional) The args to call the function with (default to passing the current Node)</p>\n",
526             "name": "args"
527           }
528         ],
529         "name": "eachChild",
530         "owner": "Ext.data.NodeInterface",
531         "doc": "<p>Interates the child nodes of this node, calling the specified function with each node. The arguments to the function\nwill be the args provided or the current node. If the function returns false at any point,\nthe iteration stops.</p>\n",
532         "linenr": 754,
533         "return": {
534           "type": "void",
535           "doc": "\n"
536         },
537         "html_filename": "NodeInterface.html"
538       },
539       {
540         "deprecated": null,
541         "alias": null,
542         "protected": false,
543         "tagname": "method",
544         "href": "NodeInterface.html#Ext-data-NodeInterface-method-expand",
545         "shortDoc": "Expand this node. ...",
546         "static": false,
547         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
548         "private": false,
549         "params": [
550           {
551             "type": "Function",
552             "optional": false,
553             "doc": "<p>(Optional) True to recursively expand all the children</p>\n",
554             "name": "recursive"
555           },
556           {
557             "type": "Function",
558             "optional": false,
559             "doc": "<p>(Optional) The function to execute once the expand completes</p>\n",
560             "name": "callback"
561           },
562           {
563             "type": "Object",
564             "optional": false,
565             "doc": "<p>(Optional) The scope to run the callback in</p>\n",
566             "name": "scope"
567           }
568         ],
569         "name": "expand",
570         "owner": "Ext.data.NodeInterface",
571         "doc": "<p>Expand this node.</p>\n",
572         "linenr": 924,
573         "return": {
574           "type": "void",
575           "doc": "\n"
576         },
577         "html_filename": "NodeInterface.html"
578       },
579       {
580         "deprecated": null,
581         "alias": null,
582         "protected": false,
583         "tagname": "method",
584         "href": "NodeInterface.html#Ext-data-NodeInterface-method-expandChildren",
585         "shortDoc": "Expand all the children of this node. ...",
586         "static": false,
587         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
588         "private": false,
589         "params": [
590           {
591             "type": "Function",
592             "optional": false,
593             "doc": "<p>(Optional) True to recursively expand all the children</p>\n",
594             "name": "recursive"
595           },
596           {
597             "type": "Function",
598             "optional": false,
599             "doc": "<p>(Optional) The function to execute once all the children are expanded</p>\n",
600             "name": "callback"
601           },
602           {
603             "type": "Object",
604             "optional": false,
605             "doc": "<p>(Optional) The scope to run the callback in</p>\n",
606             "name": "scope"
607           }
608         ],
609         "name": "expandChildren",
610         "owner": "Ext.data.NodeInterface",
611         "doc": "<p>Expand all the children of this node.</p>\n",
612         "linenr": 975,
613         "return": {
614           "type": "void",
615           "doc": "\n"
616         },
617         "html_filename": "NodeInterface.html"
618       },
619       {
620         "deprecated": null,
621         "alias": null,
622         "protected": false,
623         "tagname": "method",
624         "href": "NodeInterface.html#Ext-data-NodeInterface-method-findChild",
625         "shortDoc": "Finds the first child that has the attribute with the specified value. ...",
626         "static": false,
627         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
628         "private": false,
629         "params": [
630           {
631             "type": "String",
632             "optional": false,
633             "doc": "<p>The attribute name</p>\n",
634             "name": "attribute"
635           },
636           {
637             "type": "Mixed",
638             "optional": false,
639             "doc": "<p>The value to search for</p>\n",
640             "name": "value"
641           },
642           {
643             "type": "Boolean",
644             "optional": false,
645             "doc": "<p>(Optional) True to search through nodes deeper than the immediate children</p>\n",
646             "name": "deep"
647           }
648         ],
649         "name": "findChild",
650         "owner": "Ext.data.NodeInterface",
651         "doc": "<p>Finds the first child that has the attribute with the specified value.</p>\n",
652         "linenr": 774,
653         "return": {
654           "type": "Node",
655           "doc": "<p>The found child or null if none was found</p>\n"
656         },
657         "html_filename": "NodeInterface.html"
658       },
659       {
660         "deprecated": null,
661         "alias": null,
662         "protected": false,
663         "tagname": "method",
664         "href": "NodeInterface.html#Ext-data-NodeInterface-method-findChildBy",
665         "shortDoc": "Finds the first child by a custom function. ...",
666         "static": false,
667         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
668         "private": false,
669         "params": [
670           {
671             "type": "Function",
672             "optional": false,
673             "doc": "<p>A function which must return <code>true</code> if the passed Node is the required Node.</p>\n",
674             "name": "fn"
675           },
676           {
677             "type": "Object",
678             "optional": true,
679             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the Node being tested.</p>\n",
680             "name": "scope"
681           },
682           {
683             "type": "Boolean",
684             "optional": false,
685             "doc": "<p>(Optional) True to search through nodes deeper than the immediate children</p>\n",
686             "name": "deep"
687           }
688         ],
689         "name": "findChildBy",
690         "owner": "Ext.data.NodeInterface",
691         "doc": "<p>Finds the first child by a custom function. The child matches if the function passed returns <code>true</code>.</p>\n",
692         "linenr": 787,
693         "return": {
694           "type": "Node",
695           "doc": "<p>The found child or null if none was found</p>\n"
696         },
697         "html_filename": "NodeInterface.html"
698       },
699       {
700         "deprecated": null,
701         "alias": null,
702         "protected": false,
703         "tagname": "method",
704         "href": "NodeInterface.html#Ext-data-NodeInterface-method-getChildAt",
705         "shortDoc": "Returns the child node at the specified index. ...",
706         "static": false,
707         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
708         "private": false,
709         "params": [
710           {
711             "type": "Number",
712             "optional": false,
713             "doc": "\n",
714             "name": "index"
715           }
716         ],
717         "name": "getChildAt",
718         "owner": "Ext.data.NodeInterface",
719         "doc": "<p>Returns the child node at the specified index.</p>\n",
720         "linenr": 667,
721         "return": {
722           "type": "Node",
723           "doc": "\n"
724         },
725         "html_filename": "NodeInterface.html"
726       },
727       {
728         "deprecated": null,
729         "alias": null,
730         "protected": false,
731         "tagname": "method",
732         "href": "NodeInterface.html#Ext-data-NodeInterface-method-getDepth",
733         "shortDoc": "Returns depth of this node (the root node has a depth of 0) ...",
734         "static": false,
735         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
736         "private": false,
737         "params": [
738
739         ],
740         "name": "getDepth",
741         "owner": "Ext.data.NodeInterface",
742         "doc": "<p>Returns depth of this node (the root node has a depth of 0)</p>\n",
743         "linenr": 699,
744         "return": {
745           "type": "Number",
746           "doc": "\n"
747         },
748         "html_filename": "NodeInterface.html"
749       },
750       {
751         "deprecated": null,
752         "alias": null,
753         "protected": false,
754         "tagname": "method",
755         "href": "Base3.html#Ext-Base-method-getName",
756         "shortDoc": "Get the current class' name in string format. ...",
757         "static": false,
758         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
759         "private": false,
760         "params": [
761
762         ],
763         "name": "getName",
764         "owner": "Ext.Base",
765         "doc": "<p>Get the current class' name in string format.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    constructor: function() {\n        alert(this.self.getName()); // alerts 'My.cool.Class'\n    }\n});\n\nMy.cool.Class.getName(); // 'My.cool.Class'\n</code></pre>\n",
766         "linenr": 631,
767         "return": {
768           "type": "String",
769           "doc": "<p>className</p>\n"
770         },
771         "html_filename": "Base3.html"
772       },
773       {
774         "deprecated": null,
775         "alias": null,
776         "protected": false,
777         "tagname": "method",
778         "href": "NodeInterface.html#Ext-data-NodeInterface-method-hasChildNodes",
779         "shortDoc": "Returns true if this node has one or more child nodes, else false. ...",
780         "static": false,
781         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
782         "private": false,
783         "params": [
784
785         ],
786         "name": "hasChildNodes",
787         "owner": "Ext.data.NodeInterface",
788         "doc": "<p>Returns true if this node has one or more child nodes, else false.</p>\n",
789         "linenr": 310,
790         "return": {
791           "type": "Boolean",
792           "doc": "\n"
793         },
794         "html_filename": "NodeInterface.html"
795       },
796       {
797         "deprecated": null,
798         "alias": null,
799         "protected": false,
800         "tagname": "method",
801         "href": "Base3.html#Ext-Base-method-implement",
802         "shortDoc": "Add methods / properties to the prototype of this class. ...",
803         "static": true,
804         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
805         "private": false,
806         "params": [
807           {
808             "type": "Object",
809             "optional": false,
810             "doc": "\n",
811             "name": "members"
812           }
813         ],
814         "name": "implement",
815         "owner": "Ext.Base",
816         "doc": "<p>Add methods / properties to the prototype of this class.</p>\n\n<pre><code>Ext.define('My.awesome.Cat', {\n    constructor: function() {\n        ...\n    }\n});\n\n My.awesome.Cat.implement({\n     meow: function() {\n        alert('Meowww...');\n     }\n });\n\n var kitty = new My.awesome.Cat;\n kitty.meow();\n</code></pre>\n",
817         "linenr": 415,
818         "return": {
819           "type": "void",
820           "doc": "\n"
821         },
822         "html_filename": "Base3.html"
823       },
824       {
825         "deprecated": null,
826         "alias": null,
827         "protected": false,
828         "tagname": "method",
829         "href": "NodeInterface.html#Ext-data-NodeInterface-method-indexOf",
830         "shortDoc": "Returns the index of a child node ...",
831         "static": false,
832         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
833         "private": false,
834         "params": [
835           {
836             "type": "Node",
837             "optional": false,
838             "doc": "\n",
839             "name": "node"
840           }
841         ],
842         "name": "indexOf",
843         "owner": "Ext.data.NodeInterface",
844         "doc": "<p>Returns the index of a child node</p>\n",
845         "linenr": 690,
846         "return": {
847           "type": "Number",
848           "doc": "<p>The index of the node or -1 if it was not found</p>\n"
849         },
850         "html_filename": "NodeInterface.html"
851       },
852       {
853         "deprecated": null,
854         "alias": null,
855         "protected": true,
856         "tagname": "method",
857         "href": "Base3.html#Ext-Base-method-initConfig",
858         "shortDoc": "Initialize configuration for this class. ...",
859         "static": false,
860         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
861         "private": false,
862         "params": [
863           {
864             "type": "Object",
865             "optional": false,
866             "doc": "\n",
867             "name": "config"
868           }
869         ],
870         "name": "initConfig",
871         "owner": "Ext.Base",
872         "doc": "<p>Initialize configuration for this class. a typical example:</p>\n\n<pre><code>Ext.define('My.awesome.Class', {\n    // The default config\n    config: {\n        name: 'Awesome',\n        isAwesome: true\n    },\n\n    constructor: function(config) {\n        this.initConfig(config);\n\n        return this;\n    }\n});\n\nvar awesome = new My.awesome.Class({\n    name: 'Super Awesome'\n});\n\nalert(awesome.getName()); // 'Super Awesome'\n</code></pre>\n",
873         "linenr": 63,
874         "return": {
875           "type": "Object",
876           "doc": "<p>mixins The mixin prototypes as key - value pairs</p>\n"
877         },
878         "html_filename": "Base3.html"
879       },
880       {
881         "deprecated": null,
882         "alias": null,
883         "protected": false,
884         "tagname": "method",
885         "href": "NodeInterface.html#Ext-data-NodeInterface-method-insertBefore",
886         "shortDoc": "Inserts the first node before the second node in this nodes childNodes collection. ...",
887         "static": false,
888         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
889         "private": false,
890         "params": [
891           {
892             "type": "Node",
893             "optional": false,
894             "doc": "<p>The node to insert</p>\n",
895             "name": "node"
896           },
897           {
898             "type": "Node",
899             "optional": false,
900             "doc": "<p>The node to insert before (if null the node is appended)</p>\n",
901             "name": "refNode"
902           },
903           {
904             "type": "Object",
905             "optional": false,
906             "doc": "\n",
907             "name": "suppressEvents"
908           }
909         ],
910         "name": "insertBefore",
911         "owner": "Ext.data.NodeInterface",
912         "doc": "<p>Inserts the first node before the second node in this nodes childNodes collection.</p>\n",
913         "linenr": 540,
914         "return": {
915           "type": "Node",
916           "doc": "<p>The inserted node</p>\n"
917         },
918         "html_filename": "NodeInterface.html"
919       },
920       {
921         "deprecated": null,
922         "alias": null,
923         "protected": false,
924         "tagname": "method",
925         "href": "NodeInterface.html#Ext-data-NodeInterface-method-insertChild",
926         "shortDoc": "Insert a node into this node ...",
927         "static": false,
928         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
929         "private": false,
930         "params": [
931           {
932             "type": "Number",
933             "optional": false,
934             "doc": "<p>The zero-based index to insert the node at</p>\n",
935             "name": "index"
936           },
937           {
938             "type": "Ext.data.Model",
939             "optional": false,
940             "doc": "<p>The node to insert</p>\n",
941             "name": "node"
942           }
943         ],
944         "name": "insertChild",
945         "owner": "Ext.data.NodeInterface",
946         "doc": "<p>Insert a node into this node</p>\n",
947         "linenr": 622,
948         "return": {
949           "type": "Ext.data.Record",
950           "doc": "<p>The record you just inserted</p>\n"
951         },
952         "html_filename": "NodeInterface.html"
953       },
954       {
955         "deprecated": null,
956         "alias": null,
957         "protected": false,
958         "tagname": "method",
959         "href": "NodeInterface.html#Ext-data-NodeInterface-method-isAncestor",
960         "shortDoc": "Returns true if the passed node is an ancestor (at any point) of this node. ...",
961         "static": false,
962         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
963         "private": false,
964         "params": [
965           {
966             "type": "Node",
967             "optional": false,
968             "doc": "\n",
969             "name": "node"
970           }
971         ],
972         "name": "isAncestor",
973         "owner": "Ext.data.NodeInterface",
974         "doc": "<p>Returns true if the passed node is an ancestor (at any point) of this node.</p>\n",
975         "linenr": 824,
976         "return": {
977           "type": "Boolean",
978           "doc": "\n"
979         },
980         "html_filename": "NodeInterface.html"
981       },
982       {
983         "deprecated": null,
984         "alias": null,
985         "protected": false,
986         "tagname": "method",
987         "href": "NodeInterface.html#Ext-data-NodeInterface-method-isExpandable",
988         "shortDoc": "Returns true if this node has one or more child nodes, or if the expandable\nnode attribute is explicitly specified as...",
989         "static": false,
990         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
991         "private": false,
992         "params": [
993
994         ],
995         "name": "isExpandable",
996         "owner": "Ext.data.NodeInterface",
997         "doc": "<p>Returns true if this node has one or more child nodes, or if the <tt>expandable</tt>\nnode attribute is explicitly specified as true (see attributes), otherwise returns false.</p>\n",
998         "linenr": 318,
999         "return": {
1000           "type": "Boolean",
1001           "doc": "\n"
1002         },
1003         "html_filename": "NodeInterface.html"
1004       },
1005       {
1006         "deprecated": null,
1007         "alias": null,
1008         "protected": false,
1009         "tagname": "method",
1010         "href": "NodeInterface.html#Ext-data-NodeInterface-method-isExpanded",
1011         "shortDoc": "Returns true if this node is expaned ...",
1012         "static": false,
1013         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1014         "private": false,
1015         "params": [
1016
1017         ],
1018         "name": "isExpanded",
1019         "owner": "Ext.data.NodeInterface",
1020         "doc": "<p>Returns true if this node is expaned</p>\n",
1021         "linenr": 877,
1022         "return": {
1023           "type": "Boolean",
1024           "doc": "\n"
1025         },
1026         "html_filename": "NodeInterface.html"
1027       },
1028       {
1029         "deprecated": null,
1030         "alias": null,
1031         "protected": false,
1032         "tagname": "method",
1033         "href": "NodeInterface.html#Ext-data-NodeInterface-method-isFirst",
1034         "shortDoc": "Returns true if this node is the first child of its parent ...",
1035         "static": false,
1036         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1037         "private": false,
1038         "params": [
1039
1040         ],
1041         "name": "isFirst",
1042         "owner": "Ext.data.NodeInterface",
1043         "doc": "<p>Returns true if this node is the first child of its parent</p>\n",
1044         "linenr": 302,
1045         "return": {
1046           "type": "Boolean",
1047           "doc": "\n"
1048         },
1049         "html_filename": "NodeInterface.html"
1050       },
1051       {
1052         "deprecated": null,
1053         "alias": null,
1054         "protected": false,
1055         "tagname": "method",
1056         "href": "NodeInterface.html#Ext-data-NodeInterface-method-isLast",
1057         "shortDoc": "Returns true if this node is the last child of its parent ...",
1058         "static": false,
1059         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1060         "private": false,
1061         "params": [
1062
1063         ],
1064         "name": "isLast",
1065         "owner": "Ext.data.NodeInterface",
1066         "doc": "<p>Returns true if this node is the last child of its parent</p>\n",
1067         "linenr": 294,
1068         "return": {
1069           "type": "Boolean",
1070           "doc": "\n"
1071         },
1072         "html_filename": "NodeInterface.html"
1073       },
1074       {
1075         "deprecated": null,
1076         "alias": null,
1077         "protected": false,
1078         "tagname": "method",
1079         "href": "NodeInterface.html#Ext-data-NodeInterface-method-isLeaf",
1080         "shortDoc": "Returns true if this node is a leaf ...",
1081         "static": false,
1082         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1083         "private": false,
1084         "params": [
1085
1086         ],
1087         "name": "isLeaf",
1088         "owner": "Ext.data.NodeInterface",
1089         "doc": "<p>Returns true if this node is a leaf</p>\n",
1090         "linenr": 226,
1091         "return": {
1092           "type": "Boolean",
1093           "doc": "\n"
1094         },
1095         "html_filename": "NodeInterface.html"
1096       },
1097       {
1098         "deprecated": null,
1099         "alias": null,
1100         "protected": false,
1101         "tagname": "method",
1102         "href": "NodeInterface.html#Ext-data-NodeInterface-method-isLoaded",
1103         "shortDoc": "Returns true if this node is loaded ...",
1104         "static": false,
1105         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1106         "private": false,
1107         "params": [
1108
1109         ],
1110         "name": "isLoaded",
1111         "owner": "Ext.data.NodeInterface",
1112         "doc": "<p>Returns true if this node is loaded</p>\n",
1113         "linenr": 885,
1114         "return": {
1115           "type": "Boolean",
1116           "doc": "\n"
1117         },
1118         "html_filename": "NodeInterface.html"
1119       },
1120       {
1121         "deprecated": null,
1122         "alias": null,
1123         "protected": false,
1124         "tagname": "method",
1125         "href": "NodeInterface.html#Ext-data-NodeInterface-method-isLoading",
1126         "shortDoc": "Returns true if this node is loading ...",
1127         "static": false,
1128         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1129         "private": false,
1130         "params": [
1131
1132         ],
1133         "name": "isLoading",
1134         "owner": "Ext.data.NodeInterface",
1135         "doc": "<p>Returns true if this node is loading</p>\n",
1136         "linenr": 893,
1137         "return": {
1138           "type": "Boolean",
1139           "doc": "\n"
1140         },
1141         "html_filename": "NodeInterface.html"
1142       },
1143       {
1144         "deprecated": null,
1145         "alias": null,
1146         "protected": false,
1147         "tagname": "method",
1148         "href": "NodeInterface.html#Ext-data-NodeInterface-method-isRoot",
1149         "shortDoc": "Returns true if this node is the root node ...",
1150         "static": false,
1151         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1152         "private": false,
1153         "params": [
1154
1155         ],
1156         "name": "isRoot",
1157         "owner": "Ext.data.NodeInterface",
1158         "doc": "<p>Returns true if this node is the root node</p>\n",
1159         "linenr": 901,
1160         "return": {
1161           "type": "Boolean",
1162           "doc": "\n"
1163         },
1164         "html_filename": "NodeInterface.html"
1165       },
1166       {
1167         "deprecated": null,
1168         "alias": null,
1169         "protected": false,
1170         "tagname": "method",
1171         "href": "NodeInterface.html#Ext-data-NodeInterface-method-isVisible",
1172         "shortDoc": "Returns true if this node is visible ...",
1173         "static": false,
1174         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1175         "private": false,
1176         "params": [
1177
1178         ],
1179         "name": "isVisible",
1180         "owner": "Ext.data.NodeInterface",
1181         "doc": "<p>Returns true if this node is visible</p>\n",
1182         "linenr": 909,
1183         "return": {
1184           "type": "Boolean",
1185           "doc": "\n"
1186         },
1187         "html_filename": "NodeInterface.html"
1188       },
1189       {
1190         "deprecated": null,
1191         "alias": null,
1192         "protected": false,
1193         "tagname": "method",
1194         "href": "Base3.html#Ext-Base-method-override",
1195         "shortDoc": "Override prototype members of this class. ...",
1196         "static": true,
1197         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1198         "private": false,
1199         "params": [
1200           {
1201             "type": "Object",
1202             "optional": false,
1203             "doc": "\n",
1204             "name": "members"
1205           }
1206         ],
1207         "name": "override",
1208         "owner": "Ext.Base",
1209         "doc": "<p>Override prototype members of this class. Overridden methods can be invoked via\n<a href=\"#/api/Ext.Base-method-callOverridden\" rel=\"Ext.Base-method-callOverridden\" class=\"docClass\">Ext.Base.callOverridden</a></p>\n\n<pre><code>Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n</code></pre>\n",
1210         "linenr": 518,
1211         "return": {
1212           "type": "Ext.Base",
1213           "doc": "<p>this</p>\n"
1214         },
1215         "html_filename": "Base3.html"
1216       },
1217       {
1218         "deprecated": null,
1219         "alias": null,
1220         "protected": false,
1221         "tagname": "method",
1222         "href": "NodeInterface.html#Ext-data-NodeInterface-method-remove",
1223         "shortDoc": "Removes this node from its parent ...",
1224         "static": false,
1225         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1226         "private": false,
1227         "params": [
1228           {
1229             "type": "Boolean",
1230             "optional": false,
1231             "doc": "<p><tt>true</tt> to destroy the node upon removal. Defaults to <tt>false</tt>.</p>\n",
1232             "name": "destroy"
1233           },
1234           {
1235             "type": "Object",
1236             "optional": false,
1237             "doc": "\n",
1238             "name": "suppressEvents"
1239           }
1240         ],
1241         "name": "remove",
1242         "owner": "Ext.data.NodeInterface",
1243         "doc": "<p>Removes this node from its parent</p>\n",
1244         "linenr": 638,
1245         "return": {
1246           "type": "Node",
1247           "doc": "<p>this</p>\n"
1248         },
1249         "html_filename": "NodeInterface.html"
1250       },
1251       {
1252         "deprecated": null,
1253         "alias": null,
1254         "protected": false,
1255         "tagname": "method",
1256         "href": "NodeInterface.html#Ext-data-NodeInterface-method-removeAll",
1257         "shortDoc": "Removes all child nodes from this node. ...",
1258         "static": false,
1259         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1260         "private": false,
1261         "params": [
1262           {
1263             "type": "Boolean",
1264             "optional": false,
1265             "doc": "<p><tt>true</tt> to destroy the node upon removal. Defaults to <tt>false</tt>.</p>\n",
1266             "name": "destroy"
1267           },
1268           {
1269             "type": "Object",
1270             "optional": false,
1271             "doc": "\n",
1272             "name": "suppressEvents"
1273           }
1274         ],
1275         "name": "removeAll",
1276         "owner": "Ext.data.NodeInterface",
1277         "doc": "<p>Removes all child nodes from this node.</p>\n",
1278         "linenr": 652,
1279         "return": {
1280           "type": "Node",
1281           "doc": "<p>this</p>\n"
1282         },
1283         "html_filename": "NodeInterface.html"
1284       },
1285       {
1286         "deprecated": null,
1287         "alias": null,
1288         "protected": false,
1289         "tagname": "method",
1290         "href": "NodeInterface.html#Ext-data-NodeInterface-method-removeChild",
1291         "shortDoc": "Removes a child node from this node. ...",
1292         "static": false,
1293         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1294         "private": false,
1295         "params": [
1296           {
1297             "type": "Node",
1298             "optional": false,
1299             "doc": "<p>The node to remove</p>\n",
1300             "name": "node"
1301           },
1302           {
1303             "type": "Boolean",
1304             "optional": false,
1305             "doc": "<p><tt>true</tt> to destroy the node upon removal. Defaults to <tt>false</tt>.</p>\n",
1306             "name": "destroy"
1307           },
1308           {
1309             "type": "Object",
1310             "optional": false,
1311             "doc": "\n",
1312             "name": "suppressEvents"
1313           },
1314           {
1315             "type": "Object",
1316             "optional": false,
1317             "doc": "\n",
1318             "name": "suppressNodeUpdate"
1319           }
1320         ],
1321         "name": "removeChild",
1322         "owner": "Ext.data.NodeInterface",
1323         "doc": "<p>Removes a child node from this node.</p>\n",
1324         "linenr": 421,
1325         "return": {
1326           "type": "Node",
1327           "doc": "<p>The removed node</p>\n"
1328         },
1329         "html_filename": "NodeInterface.html"
1330       },
1331       {
1332         "deprecated": null,
1333         "alias": null,
1334         "protected": false,
1335         "tagname": "method",
1336         "href": "NodeInterface.html#Ext-data-NodeInterface-method-replaceChild",
1337         "shortDoc": "Replaces one child node in this node with another. ...",
1338         "static": false,
1339         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1340         "private": false,
1341         "params": [
1342           {
1343             "type": "Node",
1344             "optional": false,
1345             "doc": "<p>The replacement node</p>\n",
1346             "name": "newChild"
1347           },
1348           {
1349             "type": "Node",
1350             "optional": false,
1351             "doc": "<p>The node to replace</p>\n",
1352             "name": "oldChild"
1353           },
1354           {
1355             "type": "Object",
1356             "optional": false,
1357             "doc": "\n",
1358             "name": "suppressEvents"
1359           }
1360         ],
1361         "name": "replaceChild",
1362         "owner": "Ext.data.NodeInterface",
1363         "doc": "<p>Replaces one child node in this node with another.</p>\n",
1364         "linenr": 676,
1365         "return": {
1366           "type": "Node",
1367           "doc": "<p>The replaced node</p>\n"
1368         },
1369         "html_filename": "NodeInterface.html"
1370       },
1371       {
1372         "deprecated": null,
1373         "alias": null,
1374         "protected": false,
1375         "tagname": "method",
1376         "href": "NodeInterface.html#Ext-data-NodeInterface-method-sort",
1377         "shortDoc": "Sorts this nodes children using the supplied sort function. ...",
1378         "static": false,
1379         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1380         "private": false,
1381         "params": [
1382           {
1383             "type": "Function",
1384             "optional": false,
1385             "doc": "<p>A function which, when passed two Nodes, returns -1, 0 or 1 depending upon required sort order.</p>\n",
1386             "name": "fn"
1387           },
1388           {
1389             "type": "Boolean",
1390             "optional": false,
1391             "doc": "<p>Whether or not to apply this sort recursively</p>\n",
1392             "name": "recursive"
1393           },
1394           {
1395             "type": "Boolean",
1396             "optional": false,
1397             "doc": "<p>Set to true to not fire a sort event.</p>\n",
1398             "name": "suppressEvent"
1399           }
1400         ],
1401         "name": "sort",
1402         "owner": "Ext.data.NodeInterface",
1403         "doc": "<p>Sorts this nodes children using the supplied sort function.</p>\n",
1404         "linenr": 840,
1405         "return": {
1406           "type": "void",
1407           "doc": "\n"
1408         },
1409         "html_filename": "NodeInterface.html"
1410       },
1411       {
1412         "deprecated": null,
1413         "alias": null,
1414         "protected": true,
1415         "tagname": "method",
1416         "href": "Base3.html#Ext-Base-method-statics",
1417         "shortDoc": "Get the reference to the class from which this object was instantiated. ...",
1418         "static": false,
1419         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1420         "private": false,
1421         "params": [
1422
1423         ],
1424         "name": "statics",
1425         "owner": "Ext.Base",
1426         "doc": "<p>Get the reference to the class from which this object was instantiated. Note that unlike <a href=\"#/api/Ext.Base-property-self\" rel=\"Ext.Base-property-self\" class=\"docClass\">Ext.Base.self</a>,\n<code>this.statics()</code> is scope-independent and it always returns the class from which it was called, regardless of what\n<code>this</code> points to during run-time</p>\n\n<pre><code>Ext.define('My.Cat', {\n    statics: {\n        totalCreated: 0,\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        var statics = this.statics();\n\n        alert(statics.speciesName);     // always equals to 'Cat' no matter what 'this' refers to\n                                        // equivalent to: My.Cat.speciesName\n\n        alert(this.self.speciesName);   // dependent on 'this'\n\n        statics.totalCreated++;\n\n        return this;\n    },\n\n    clone: function() {\n        var cloned = new this.self;                      // dependent on 'this'\n\n        cloned.groupName = this.statics().speciesName;   // equivalent to: My.Cat.speciesName\n\n        return cloned;\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n\n    statics: {\n        speciesName: 'Snow Leopard'     // My.SnowLeopard.speciesName = 'Snow Leopard'\n    },\n\n    constructor: function() {\n        this.callParent();\n    }\n});\n\nvar cat = new My.Cat();                 // alerts 'Cat', then alerts 'Cat'\n\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));         // alerts 'My.SnowLeopard'\nalert(clone.groupName);                 // alerts 'Cat'\n\nalert(My.Cat.totalCreated);             // alerts 3\n</code></pre>\n",
1427         "linenr": 199,
1428         "return": {
1429           "type": "Class",
1430           "doc": "\n"
1431         },
1432         "html_filename": "Base3.html"
1433       },
1434       {
1435         "deprecated": null,
1436         "alias": null,
1437         "protected": false,
1438         "tagname": "method",
1439         "href": "NodeInterface.html#Ext-data-NodeInterface-method-updateInfo",
1440         "shortDoc": "Updates general data of this node like isFirst, isLast, depth. ...",
1441         "static": false,
1442         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1443         "private": false,
1444         "params": [
1445           {
1446             "type": "Object",
1447             "optional": false,
1448             "doc": "\n",
1449             "name": "silent"
1450           }
1451         ],
1452         "name": "updateInfo",
1453         "owner": "Ext.data.NodeInterface",
1454         "doc": "<p>Updates general data of this node like isFirst, isLast, depth. This\nmethod is internally called after a node is moved. This shouldn't\nhave to be called by the developer unless they are creating custom\nTree plugins.</p>\n",
1455         "linenr": 252,
1456         "return": {
1457           "type": "Boolean",
1458           "doc": "\n"
1459         },
1460         "html_filename": "NodeInterface.html"
1461       }
1462     ],
1463     "property": [
1464       {
1465         "type": "Class",
1466         "deprecated": null,
1467         "alias": null,
1468         "protected": true,
1469         "tagname": "property",
1470         "href": "Base3.html#Ext-Base-property-self",
1471         "shortDoc": "Get the reference to the current class from which this object was instantiated. ...",
1472         "static": false,
1473         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1474         "private": false,
1475         "name": "self",
1476         "owner": "Ext.Base",
1477         "doc": "<p>Get the reference to the current class from which this object was instantiated. Unlike <a href=\"#/api/Ext.Base-method-statics\" rel=\"Ext.Base-method-statics\" class=\"docClass\">Ext.Base.statics</a>,\n<code>this.self</code> is scope-dependent and it's meant to be used for dynamic inheritance. See <a href=\"#/api/Ext.Base-method-statics\" rel=\"Ext.Base-method-statics\" class=\"docClass\">Ext.Base.statics</a>\nfor a detailed comparison</p>\n\n<pre><code>Ext.define('My.Cat', {\n    statics: {\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        alert(this.self.speciesName); / dependent on 'this'\n\n        return this;\n    },\n\n    clone: function() {\n        return new this.self();\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n    statics: {\n        speciesName: 'Snow Leopard'         // My.SnowLeopard.speciesName = 'Snow Leopard'\n    }\n});\n\nvar cat = new My.Cat();                     // alerts 'Cat'\nvar snowLeopard = new My.SnowLeopard();     // alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));             // alerts 'My.SnowLeopard'\n</code></pre>\n",
1478         "linenr": 18,
1479         "html_filename": "Base3.html"
1480       }
1481     ],
1482     "cssVar": [
1483
1484     ],
1485     "cssMixin": [
1486
1487     ],
1488     "event": [
1489       {
1490         "deprecated": null,
1491         "alias": null,
1492         "protected": false,
1493         "tagname": "event",
1494         "href": "NodeInterface.html#Ext-data-NodeInterface-event-append",
1495         "shortDoc": "Fires when a new child node is appended ...",
1496         "static": false,
1497         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1498         "private": false,
1499         "params": [
1500           {
1501             "type": "Node",
1502             "optional": false,
1503             "doc": "<p>This node</p>\n",
1504             "name": "this"
1505           },
1506           {
1507             "type": "Node",
1508             "optional": false,
1509             "doc": "<p>The newly appended node</p>\n",
1510             "name": "node"
1511           },
1512           {
1513             "type": "Number",
1514             "optional": false,
1515             "doc": "<p>The index of the newly appended node</p>\n",
1516             "name": "index"
1517           },
1518           {
1519             "type": "Object",
1520             "tagname": "param",
1521             "name": "options",
1522             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1523           }
1524         ],
1525         "name": "append",
1526         "owner": "Ext.data.NodeInterface",
1527         "doc": "<p>Fires when a new child node is appended</p>\n",
1528         "linenr": 78,
1529         "html_filename": "NodeInterface.html"
1530       },
1531       {
1532         "deprecated": null,
1533         "alias": null,
1534         "protected": false,
1535         "tagname": "event",
1536         "href": "NodeInterface.html#Ext-data-NodeInterface-event-beforeappend",
1537         "shortDoc": "Fires before a new child is appended, return false to cancel the append. ...",
1538         "static": false,
1539         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1540         "private": false,
1541         "params": [
1542           {
1543             "type": "Node",
1544             "optional": false,
1545             "doc": "<p>This node</p>\n",
1546             "name": "this"
1547           },
1548           {
1549             "type": "Node",
1550             "optional": false,
1551             "doc": "<p>The child node to be appended</p>\n",
1552             "name": "node"
1553           },
1554           {
1555             "type": "Object",
1556             "tagname": "param",
1557             "name": "options",
1558             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1559           }
1560         ],
1561         "name": "beforeappend",
1562         "owner": "Ext.data.NodeInterface",
1563         "doc": "<p>Fires before a new child is appended, return false to cancel the append.</p>\n",
1564         "linenr": 114,
1565         "html_filename": "NodeInterface.html"
1566       },
1567       {
1568         "deprecated": null,
1569         "alias": null,
1570         "protected": false,
1571         "tagname": "event",
1572         "href": "NodeInterface.html#Ext-data-NodeInterface-event-beforecollapse",
1573         "shortDoc": "Fires before this node is collapsed. ...",
1574         "static": false,
1575         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1576         "private": false,
1577         "params": [
1578           {
1579             "type": "Node",
1580             "optional": false,
1581             "doc": "<p>The collapsing node</p>\n",
1582             "name": "this"
1583           },
1584           {
1585             "type": "Object",
1586             "tagname": "param",
1587             "name": "options",
1588             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1589           }
1590         ],
1591         "name": "beforecollapse",
1592         "owner": "Ext.data.NodeInterface",
1593         "doc": "<p>Fires before this node is collapsed.</p>\n",
1594         "linenr": 170,
1595         "html_filename": "NodeInterface.html"
1596       },
1597       {
1598         "deprecated": null,
1599         "alias": null,
1600         "protected": false,
1601         "tagname": "event",
1602         "href": "NodeInterface.html#Ext-data-NodeInterface-event-beforeexpand",
1603         "shortDoc": "Fires before this node is expanded. ...",
1604         "static": false,
1605         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1606         "private": false,
1607         "params": [
1608           {
1609             "type": "Node",
1610             "optional": false,
1611             "doc": "<p>The expanding node</p>\n",
1612             "name": "this"
1613           },
1614           {
1615             "type": "Object",
1616             "tagname": "param",
1617             "name": "options",
1618             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1619           }
1620         ],
1621         "name": "beforeexpand",
1622         "owner": "Ext.data.NodeInterface",
1623         "doc": "<p>Fires before this node is expanded.</p>\n",
1624         "linenr": 163,
1625         "html_filename": "NodeInterface.html"
1626       },
1627       {
1628         "deprecated": null,
1629         "alias": null,
1630         "protected": false,
1631         "tagname": "event",
1632         "href": "NodeInterface.html#Ext-data-NodeInterface-event-beforeinsert",
1633         "shortDoc": "Fires before a new child is inserted, return false to cancel the insert. ...",
1634         "static": false,
1635         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1636         "private": false,
1637         "params": [
1638           {
1639             "type": "Node",
1640             "optional": false,
1641             "doc": "<p>This node</p>\n",
1642             "name": "this"
1643           },
1644           {
1645             "type": "Node",
1646             "optional": false,
1647             "doc": "<p>The child node to be inserted</p>\n",
1648             "name": "node"
1649           },
1650           {
1651             "type": "Node",
1652             "optional": false,
1653             "doc": "<p>The child node the node is being inserted before</p>\n",
1654             "name": "refNode"
1655           },
1656           {
1657             "type": "Object",
1658             "tagname": "param",
1659             "name": "options",
1660             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1661           }
1662         ],
1663         "name": "beforeinsert",
1664         "owner": "Ext.data.NodeInterface",
1665         "doc": "<p>Fires before a new child is inserted, return false to cancel the insert.</p>\n",
1666         "linenr": 140,
1667         "html_filename": "NodeInterface.html"
1668       },
1669       {
1670         "deprecated": null,
1671         "alias": null,
1672         "protected": false,
1673         "tagname": "event",
1674         "href": "NodeInterface.html#Ext-data-NodeInterface-event-beforemove",
1675         "shortDoc": "Fires before this node is moved to a new location in the tree. ...",
1676         "static": false,
1677         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1678         "private": false,
1679         "params": [
1680           {
1681             "type": "Node",
1682             "optional": false,
1683             "doc": "<p>This node</p>\n",
1684             "name": "this"
1685           },
1686           {
1687             "type": "Node",
1688             "optional": false,
1689             "doc": "<p>The parent of this node</p>\n",
1690             "name": "oldParent"
1691           },
1692           {
1693             "type": "Node",
1694             "optional": false,
1695             "doc": "<p>The new parent this node is moving to</p>\n",
1696             "name": "newParent"
1697           },
1698           {
1699             "type": "Number",
1700             "optional": false,
1701             "doc": "<p>The index it is being moved to</p>\n",
1702             "name": "index"
1703           },
1704           {
1705             "type": "Object",
1706             "tagname": "param",
1707             "name": "options",
1708             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1709           }
1710         ],
1711         "name": "beforemove",
1712         "owner": "Ext.data.NodeInterface",
1713         "doc": "<p>Fires before this node is moved to a new location in the tree. Return false to cancel the move.</p>\n",
1714         "linenr": 130,
1715         "html_filename": "NodeInterface.html"
1716       },
1717       {
1718         "deprecated": null,
1719         "alias": null,
1720         "protected": false,
1721         "tagname": "event",
1722         "href": "NodeInterface.html#Ext-data-NodeInterface-event-beforeremove",
1723         "shortDoc": "Fires before a child is removed, return false to cancel the remove. ...",
1724         "static": false,
1725         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1726         "private": false,
1727         "params": [
1728           {
1729             "type": "Node",
1730             "optional": false,
1731             "doc": "<p>This node</p>\n",
1732             "name": "this"
1733           },
1734           {
1735             "type": "Node",
1736             "optional": false,
1737             "doc": "<p>The child node to be removed</p>\n",
1738             "name": "node"
1739           },
1740           {
1741             "type": "Object",
1742             "tagname": "param",
1743             "name": "options",
1744             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1745           }
1746         ],
1747         "name": "beforeremove",
1748         "owner": "Ext.data.NodeInterface",
1749         "doc": "<p>Fires before a child is removed, return false to cancel the remove.</p>\n",
1750         "linenr": 122,
1751         "html_filename": "NodeInterface.html"
1752       },
1753       {
1754         "deprecated": null,
1755         "alias": null,
1756         "protected": false,
1757         "tagname": "event",
1758         "href": "NodeInterface.html#Ext-data-NodeInterface-event-collapse",
1759         "shortDoc": "Fires when this node is collapsed. ...",
1760         "static": false,
1761         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1762         "private": false,
1763         "params": [
1764           {
1765             "type": "Node",
1766             "optional": false,
1767             "doc": "<p>The collapsing node</p>\n",
1768             "name": "this"
1769           },
1770           {
1771             "type": "Object",
1772             "tagname": "param",
1773             "name": "options",
1774             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1775           }
1776         ],
1777         "name": "collapse",
1778         "owner": "Ext.data.NodeInterface",
1779         "doc": "<p>Fires when this node is collapsed.</p>\n",
1780         "linenr": 156,
1781         "html_filename": "NodeInterface.html"
1782       },
1783       {
1784         "deprecated": null,
1785         "alias": null,
1786         "protected": false,
1787         "tagname": "event",
1788         "href": "NodeInterface.html#Ext-data-NodeInterface-event-expand",
1789         "shortDoc": "Fires when this node is expanded. ...",
1790         "static": false,
1791         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1792         "private": false,
1793         "params": [
1794           {
1795             "type": "Node",
1796             "optional": false,
1797             "doc": "<p>The expanding node</p>\n",
1798             "name": "this"
1799           },
1800           {
1801             "type": "Object",
1802             "tagname": "param",
1803             "name": "options",
1804             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1805           }
1806         ],
1807         "name": "expand",
1808         "owner": "Ext.data.NodeInterface",
1809         "doc": "<p>Fires when this node is expanded.</p>\n",
1810         "linenr": 149,
1811         "html_filename": "NodeInterface.html"
1812       },
1813       {
1814         "deprecated": null,
1815         "alias": null,
1816         "protected": false,
1817         "tagname": "event",
1818         "href": "NodeInterface.html#Ext-data-NodeInterface-event-insert",
1819         "shortDoc": "Fires when a new child node is inserted. ...",
1820         "static": false,
1821         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1822         "private": false,
1823         "params": [
1824           {
1825             "type": "Node",
1826             "optional": false,
1827             "doc": "<p>This node</p>\n",
1828             "name": "this"
1829           },
1830           {
1831             "type": "Node",
1832             "optional": false,
1833             "doc": "<p>The child node inserted</p>\n",
1834             "name": "node"
1835           },
1836           {
1837             "type": "Node",
1838             "optional": false,
1839             "doc": "<p>The child node the node was inserted before</p>\n",
1840             "name": "refNode"
1841           },
1842           {
1843             "type": "Object",
1844             "tagname": "param",
1845             "name": "options",
1846             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1847           }
1848         ],
1849         "name": "insert",
1850         "owner": "Ext.data.NodeInterface",
1851         "doc": "<p>Fires when a new child node is inserted.</p>\n",
1852         "linenr": 105,
1853         "html_filename": "NodeInterface.html"
1854       },
1855       {
1856         "deprecated": null,
1857         "alias": null,
1858         "protected": false,
1859         "tagname": "event",
1860         "href": "NodeInterface.html#Ext-data-NodeInterface-event-move",
1861         "shortDoc": "Fires when this node is moved to a new location in the tree ...",
1862         "static": false,
1863         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1864         "private": false,
1865         "params": [
1866           {
1867             "type": "Node",
1868             "optional": false,
1869             "doc": "<p>This node</p>\n",
1870             "name": "this"
1871           },
1872           {
1873             "type": "Node",
1874             "optional": false,
1875             "doc": "<p>The old parent of this node</p>\n",
1876             "name": "oldParent"
1877           },
1878           {
1879             "type": "Node",
1880             "optional": false,
1881             "doc": "<p>The new parent of this node</p>\n",
1882             "name": "newParent"
1883           },
1884           {
1885             "type": "Number",
1886             "optional": false,
1887             "doc": "<p>The index it was moved to</p>\n",
1888             "name": "index"
1889           },
1890           {
1891             "type": "Object",
1892             "tagname": "param",
1893             "name": "options",
1894             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1895           }
1896         ],
1897         "name": "move",
1898         "owner": "Ext.data.NodeInterface",
1899         "doc": "<p>Fires when this node is moved to a new location in the tree</p>\n",
1900         "linenr": 95,
1901         "html_filename": "NodeInterface.html"
1902       },
1903       {
1904         "deprecated": null,
1905         "alias": null,
1906         "protected": false,
1907         "tagname": "event",
1908         "href": "NodeInterface.html#Ext-data-NodeInterface-event-remove",
1909         "shortDoc": "Fires when a child node is removed ...",
1910         "static": false,
1911         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1912         "private": false,
1913         "params": [
1914           {
1915             "type": "Node",
1916             "optional": false,
1917             "doc": "<p>This node</p>\n",
1918             "name": "this"
1919           },
1920           {
1921             "type": "Node",
1922             "optional": false,
1923             "doc": "<p>The removed node</p>\n",
1924             "name": "node"
1925           },
1926           {
1927             "type": "Object",
1928             "tagname": "param",
1929             "name": "options",
1930             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1931           }
1932         ],
1933         "name": "remove",
1934         "owner": "Ext.data.NodeInterface",
1935         "doc": "<p>Fires when a child node is removed</p>\n",
1936         "linenr": 87,
1937         "html_filename": "NodeInterface.html"
1938       },
1939       {
1940         "deprecated": null,
1941         "alias": null,
1942         "protected": false,
1943         "tagname": "event",
1944         "href": "NodeInterface.html#Ext-data-NodeInterface-event-sort",
1945         "shortDoc": "Fires when this node's childNodes are sorted. ...",
1946         "static": false,
1947         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1948         "private": false,
1949         "params": [
1950           {
1951             "type": "Node",
1952             "optional": false,
1953             "doc": "<p>This node.</p>\n",
1954             "name": "this"
1955           },
1956           {
1957             "type": "Array",
1958             "optional": false,
1959             "doc": "<p>childNodes of this node.</p>\n",
1960             "name": "The"
1961           },
1962           {
1963             "type": "Object",
1964             "tagname": "param",
1965             "name": "options",
1966             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1967           }
1968         ],
1969         "name": "sort",
1970         "owner": "Ext.data.NodeInterface",
1971         "doc": "<p>Fires when this node's childNodes are sorted.</p>\n",
1972         "linenr": 177,
1973         "html_filename": "NodeInterface.html"
1974       }
1975     ]
1976   },
1977   "singleton": false,
1978   "alias": null,
1979   "superclasses": [
1980     "Ext.Base"
1981   ],
1982   "protected": false,
1983   "tagname": "class",
1984   "mixins": [
1985
1986   ],
1987   "href": "NodeInterface.html#Ext-data-NodeInterface",
1988   "subclasses": [
1989
1990   ],
1991   "static": false,
1992   "author": null,
1993   "component": false,
1994   "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/NodeInterface.js",
1995   "private": false,
1996   "alternateClassNames": [
1997
1998   ],
1999   "name": "Ext.data.NodeInterface",
2000   "doc": "<p>This class is meant to be used as a set of methods that are applied to the prototype of a\nRecord to decorate it with a Node API. This means that models used in conjunction with a tree\nwill have all of the tree related methods available on the model. In general this class will\nnot be used directly by the developer.</p>\n",
2001   "mixedInto": [
2002
2003   ],
2004   "linenr": 1,
2005   "xtypes": [
2006
2007   ],
2008   "html_filename": "NodeInterface.html",
2009   "extends": "Ext.Base"
2010 });