You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2010/03/03 11:48:37 UTC

svn commit: r918393 - in /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component: TreeListboxTagDeclaration.java TreeNodeTagDeclaration.java TreeTagDeclaration.java

Author: lofwyr
Date: Wed Mar  3 10:48:37 2010
New Revision: 918393

URL: http://svn.apache.org/viewvc?rev=918393&view=rev
Log:
Add javadoc, and fixing child prefix declaration.

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeListboxTagDeclaration.java
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeNodeTagDeclaration.java
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeTagDeclaration.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeListboxTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeListboxTagDeclaration.java?rev=918393&r1=918392&r2=918393&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeListboxTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeListboxTagDeclaration.java Wed Mar  3 10:48:37 2010
@@ -34,7 +34,7 @@
  * A tree data structure displayed as a set of list boxes.
  */
 @Tag(name = "treeListbox")
-@BodyContentDescription(anyTagOf = "<tcs:treeNode>|<tcs:treeData>")
+@BodyContentDescription(anyTagOf = "<tc:treeNode>|<tc:treeData>")
 @UIComponentTag(
     uiComponent = "org.apache.myfaces.tobago.component.UITreeListbox",
     uiComponentBaseClass = "org.apache.myfaces.tobago.component.AbstractUITree",

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeNodeTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeNodeTagDeclaration.java?rev=918393&r1=918392&r2=918393&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeNodeTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeNodeTagDeclaration.java Wed Mar  3 10:48:37 2010
@@ -36,11 +36,12 @@
 import org.apache.myfaces.tobago.taglib.decl.IsDisabled;
 
 /**
- * Creates a tree node.
+ * Creates a tree node. This component represents a single node inside a tree structure.
+ * For interating over tree node use tc:treeData
  */
 @SuppressWarnings("ALL")
 @Tag(name = "treeNode")
-@BodyContentDescription(anyTagOf = "<tcs:treeNode>* <tcs:treeData>*")
+@BodyContentDescription(anyTagOf = "<tc:treeNode>* <tc:treeData>*")
 @UIComponentTag(
     uiComponent = "org.apache.myfaces.tobago.component.UITreeNode",
     uiComponentBaseClass = "org.apache.myfaces.tobago.component.AbstractUITreeNode",

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeTagDeclaration.java?rev=918393&r1=918392&r2=918393&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeTagDeclaration.java Wed Mar  3 10:48:37 2010
@@ -34,7 +34,7 @@
  * A tree which has to variants: as menu or normal tree.
  */
 @Tag(name = "tree")
-@BodyContentDescription(anyTagOf = "<tcs:treeNode>|<tcs:treeData>")
+@BodyContentDescription(anyTagOf = "<tc:treeNode>|<tc:treeData>")
 @UIComponentTag(
     uiComponent = "org.apache.myfaces.tobago.component.UITree",
     uiComponentBaseClass = "org.apache.myfaces.tobago.component.AbstractUITree",