You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by hn...@apache.org on 2019/08/22 10:23:47 UTC

[myfaces-tobago] branch tobago-4.x updated: update description

This is an automated email from the ASF dual-hosted git repository.

hnoeth pushed a commit to branch tobago-4.x
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git


The following commit(s) were added to refs/heads/tobago-4.x by this push:
     new 0928645  update description
0928645 is described below

commit 092864588f5c48d451b573da552accc0e5f400c5
Author: Henning Noeth <hn...@apache.org>
AuthorDate: Thu Aug 22 11:01:28 2019 +0200

    update description
---
 .../myfaces/tobago/internal/taglib/declaration/HasColumnLayout.java | 6 +++---
 .../myfaces/tobago/internal/taglib/declaration/HasRowLayout.java    | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/declaration/HasColumnLayout.java b/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/declaration/HasColumnLayout.java
index 346d987..10cff27 100644
--- a/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/declaration/HasColumnLayout.java
+++ b/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/declaration/HasColumnLayout.java
@@ -25,9 +25,9 @@ import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
 public interface HasColumnLayout {
   /**
    * This value defines the layout constraints for column layout.
-   * It is a semicolon separated list of layout tokens '[&lt;n&gt;]*', '&lt;n&gt;px' or 'auto'.
-   * Where &lt;n&gt; is a non negative integer and the square brackets means optional.
-   * Example: '2*;*;100px;auto'.
+   * It is a space separated list of layout tokens '&lt;n&gt;*', '&lt;measure&gt;' or the keyword 'auto'.
+   * Where &lt;n&gt; is a positive integer or empty and &lt;measure&gt; is a valid CSS length.
+   * Example: '2* * 100px 3rem auto'.
    */
   @TagAttribute
   @UIComponentTagAttribute(defaultValue = "1*")
diff --git a/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/declaration/HasRowLayout.java b/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/declaration/HasRowLayout.java
index 4e400b4..1ebbdd2 100644
--- a/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/declaration/HasRowLayout.java
+++ b/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/declaration/HasRowLayout.java
@@ -25,9 +25,9 @@ import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
 public interface HasRowLayout {
   /**
    * This value defines the layout constraints for row layout.
-   * It is a semicolon separated list of layout tokens '[&lt;n&gt;]*', '&lt;n&gt;px' or 'auto'.
-   * Where &lt;n&gt; is a non negative integer and the square brackets means optional.
-   * Example: '2*;*;100px;auto'.
+   * It is a space separated list of layout tokens '&lt;n&gt;*', '&lt;measure&gt;' or the keyword 'auto'.
+   * Where &lt;n&gt; is a positive integer or empty and &lt;measure&gt; is a valid CSS length.
+   * Example: '2* * 100px 3rem auto'.
    */
   @TagAttribute
   @UIComponentTagAttribute(defaultValue = "1*")