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/09 13:26:42 UTC

svn commit: r920831 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/IsGridLayoutComponentWithDeprecatedDimension.java

Author: lofwyr
Date: Tue Mar  9 12:26:41 2010
New Revision: 920831

URL: http://svn.apache.org/viewvc?rev=920831&view=rev
Log:
correct deprecated annotations

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

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/IsGridLayoutComponentWithDeprecatedDimension.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/IsGridLayoutComponentWithDeprecatedDimension.java?rev=920831&r1=920830&r2=920831&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/IsGridLayoutComponentWithDeprecatedDimension.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/IsGridLayoutComponentWithDeprecatedDimension.java Tue Mar  9 12:26:41 2010
@@ -33,7 +33,9 @@ public interface IsGridLayoutComponentWi
    * This value will usually be set by the layout manager.
    *
    * @param width The width for this component.
+   * @deprecated
    */
+  @Deprecated
   @TagAttribute
   @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
       defaultCode = "((LayoutComponentRenderer)getRenderer(getFacesContext())).getWidth(getFacesContext(), this)")
@@ -43,7 +45,9 @@ public interface IsGridLayoutComponentWi
    * This value will usually be set by the layout manager.
    *
    * @param height The height for this component.
+   * @deprecated
    */
+  @Deprecated
   @TagAttribute
   @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
       defaultCode = "((LayoutComponentRenderer)getRenderer(getFacesContext())).getHeight(getFacesContext(), this)")