X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/3789b528d8dd8aad4558e38e22d775bcab1cbd36..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/source/Tree.html diff --git a/docs/source/Tree.html b/docs/source/Tree.html index e600ff03..1636b966 100644 --- a/docs/source/Tree.html +++ b/docs/source/Tree.html @@ -15,8 +15,8 @@ -
/**
- * @class Ext.data.Tree
+  
/**
+ * @class Ext.data.Tree
  * 
  * This class is used as a container for a series of nodes. The nodes themselves maintain
  * the relationship between parent/child. The tree itself acts as a manager. It gives functionality
@@ -26,8 +26,6 @@
  * centralized fashion. In general this class is not used directly, rather used internally 
  * by other parts of the framework.
  *
- * @constructor
- * @param {Node} root (optional) The root node
  */
 Ext.define('Ext.data.Tree', {
     alias: 'data.tree',
@@ -41,7 +39,11 @@ Ext.define('Ext.data.Tree', {
      * @type Node
      */
     root: null,
-        
+
+    /**
+     * Creates new Tree object.
+     * @param {Node} root (optional) The root node
+     */
     constructor: function(root) {
         var me = this;