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/06/02 14:11:15 UTC

svn commit: r950517 - /myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SheetTag.java

Author: lofwyr
Date: Wed Jun  2 12:11:14 2010
New Revision: 950517

URL: http://svn.apache.org/viewvc?rev=950517&view=rev
Log:
logging

Modified:
    myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SheetTag.java

Modified: myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SheetTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SheetTag.java?rev=950517&r1=950516&r2=950517&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SheetTag.java (original)
+++ myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SheetTag.java Wed Jun  2 12:11:14 2010
@@ -121,8 +121,8 @@ public class SheetTag extends TobagoTag 
   }
 
   public void setPagingLength(String pagingLength) {
-    Deprecation.LOG.error("The attribute 'pagingLength' of 'UISheet' is deprecated. "
-        + "Please refer the documentation for further information.");
+    Deprecation.LOG.error("The attribute 'pagingLength' of 'UISheet' is deprecated, please use 'rows' instead. "
+        + "Refer the documentation for further information.");
     this.rows = pagingLength;
   }
 
@@ -139,8 +139,8 @@ public class SheetTag extends TobagoTag 
   }
 
   public void setPagingStart(String pagingStart) {
-    Deprecation.LOG.error("The attribute 'pagingStart' of 'UISheet' is deprecated. "
-        + "Please refer the documentation for further information.");
+    Deprecation.LOG.error("The attribute 'pagingStart' of 'UISheet' is deprecated, please use 'first' instead. "
+        + "Refer the documentation for further information.");
     this.first = pagingStart;
   }