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 2009/11/20 17:45:48 UTC

svn commit: r882637 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/GridLayoutConstraintTag.java

Author: lofwyr
Date: Fri Nov 20 16:45:47 2009
New Revision: 882637

URL: http://svn.apache.org/viewvc?rev=882637&view=rev
Log:
fixing wrong return type

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/GridLayoutConstraintTag.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/GridLayoutConstraintTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/GridLayoutConstraintTag.java?rev=882637&r1=882636&r2=882637&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/GridLayoutConstraintTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/GridLayoutConstraintTag.java Fri Nov 20 16:45:47 2009
@@ -196,7 +196,7 @@
    */
   @TagAttribute(name = "width")
   @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
-  public abstract Object getWidthValue();
+  public abstract String getWidthValue();
 
 //  public abstract String getWidthExpression();
   
@@ -212,7 +212,7 @@
    */
   @TagAttribute(name = "height")
   @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
-  public abstract Object getHeightValue();
+  public abstract String getHeightValue();
 
 //  public abstract String getHeightExpression();