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 2014/08/29 12:47:53 UTC

svn commit: r1621282 - /myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/declaration/HasRenderedPartially.java

Author: lofwyr
Date: Fri Aug 29 10:47:53 2014
New Revision: 1621282

URL: http://svn.apache.org/r1621282
Log:
better documentation of renderedPartially

Modified:
    myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/declaration/HasRenderedPartially.java

Modified: myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/declaration/HasRenderedPartially.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/declaration/HasRenderedPartially.java?rev=1621282&r1=1621281&r2=1621282&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/declaration/HasRenderedPartially.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/declaration/HasRenderedPartially.java Fri Aug 29 10:47:53 2014
@@ -31,16 +31,20 @@ public interface HasRenderedPartially {
    * <p>
    * The search depends on the number of prefixed colons in the relativeId:
    * <dl>
-   *   <dd>colonCount == 0</dd>
+   *   <dd>number of prefixed colons == 0</dd>
    *   <dt>fully relative</dt>
-   *   <dd>colonCount == 1</dd>
+   *   <dd>number of prefixed colons == 1</dd>
    *   <dt>absolute (still normal findComponent syntax)</dt>
-   *   <dd>colonCount > 1</dd>
-   *   <dt>for each extra colon after 1, go up a naming container</dt>
+   *   <dd>number of prefixed colons == 2</dd>
+   *   <dt>search in the current naming container (same as 0 colons)</dt>
+   *   <dd>number of prefixed colons == 3</dd>
+   *   <dt>search in the parent naming container of the current naming container</dt>
+   *   <dd>number of prefixed colons > 3</dd>
+   *   <dt>go to the next parent naming container for each additional colon</dt>
    * </dl>
    * </p>
    * <p>
-   * If a literal is specified the identifiers must be space delimited.
+   * If a literal is specified: to use more than one identifier the identifiers must be space delimited.
    * </p>
    */
    @TagAttribute