Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / src / data / NodeStore.js
index e5da19c..bd8dbac 100644 (file)
@@ -1,3 +1,17 @@
+/*
+
+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.data.NodeStore
  * @extends Ext.data.AbstractStore
@@ -10,14 +24,16 @@ Ext.define('Ext.data.NodeStore', {
     requires: ['Ext.data.NodeInterface'],
     
     /**
-     * @cfg {Ext.data.Record} node The Record you want to bind this Store to. Note that
+     * @cfg {Ext.data.Model} node
+     * The Record you want to bind this Store to. Note that
      * this record will be decorated with the Ext.data.NodeInterface if this is not the
      * case yet.
      */
     node: null,
     
     /**
-     * @cfg {Boolean} recursive Set this to true if you want this NodeStore to represent
+     * @cfg {Boolean} recursive
+     * Set this to true if you want this NodeStore to represent
      * all the descendents of the node in its flat data collection. This is useful for
      * rendering a tree structure to a DataView and is being used internally by
      * the TreeView. Any records that are moved, removed, inserted or appended to the
@@ -27,7 +43,8 @@ Ext.define('Ext.data.NodeStore', {
     recursive: false,
     
     /** 
-     * @cfg {Boolean} rootVisible <tt>false</tt> to not include the root node in this Stores collection (defaults to <tt>true</tt>)
+     * @cfg {Boolean} rootVisible
+     * False to not include the root node in this Stores collection.
      */    
     rootVisible: false,
     
@@ -244,4 +261,4 @@ Ext.define('Ext.data.NodeStore', {
         }
         return true;
     }
-});
\ No newline at end of file
+});