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/04 14:58:57 UTC

svn commit: r918992 - in /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl: HasColumnLayout.java HasRowLayout.java

Author: lofwyr
Date: Thu Mar  4 13:58:56 2010
New Revision: 918992

URL: http://svn.apache.org/viewvc?rev=918992&view=rev
Log:
javadoc

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasColumnLayout.java
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasRowLayout.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasColumnLayout.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasColumnLayout.java?rev=918992&r1=918991&r2=918992&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasColumnLayout.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasColumnLayout.java Thu Mar  4 13:58:56 2010
@@ -20,14 +20,12 @@
 import org.apache.myfaces.tobago.apt.annotation.TagAttribute;
 import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
 
-/**
- * $Id$
- */
 public interface HasColumnLayout {
   /**
-   * LayoutConstraints for column layout.
-   * Semicolon separated list of layout tokens ('*', '<x>*', '<x>px' or '<x>%').
-   * Where '*' is equvalent to '1*'.
+   * This value defines the layout constraints for column layout.
+   * It is a semicolon separated list of layout tokens '[<n>]*', '<n>px' or 'auto'.
+   * Where <n> is a non negative integer and the square brackets means optional.
+   * Example: '2*;*;100px;auto'.
    */
   @TagAttribute
   @UIComponentTagAttribute(defaultValue = "1*")

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasRowLayout.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasRowLayout.java?rev=918992&r1=918991&r2=918992&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasRowLayout.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasRowLayout.java Thu Mar  4 13:58:56 2010
@@ -20,13 +20,12 @@
 import org.apache.myfaces.tobago.apt.annotation.TagAttribute;
 import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
 
-/**
- * $Id$
- */
 public interface HasRowLayout {
   /**
-   * LayoutConstraints for column layout.
-   * Semicolon separated list of layout tokens ('<x>*', '<x>px', '<x>%' or 'fixed').
+   * This value defines the layout constraints for column layout.
+   * It is a semicolon separated list of layout tokens '[<n>]*', '<n>px' or 'auto'.
+   * Where <n> is a non negative integer and the square brackets means optional.
+   * Example: '2*;*;100px;auto'.
    */
   @TagAttribute
   @UIComponentTagAttribute(defaultValue = "1*")