You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2007/01/10 08:42:57 UTC

svn commit: r494756 - in /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl: HasDeprecatedHeight.java HasDeprecatedWidth.java

Author: bommel
Date: Tue Jan  9 23:42:56 2007
New Revision: 494756

URL: http://svn.apache.org/viewvc?view=rev&rev=494756
Log:
added Deprecated annotation

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

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasDeprecatedHeight.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasDeprecatedHeight.java?view=diff&rev=494756&r1=494755&r2=494756
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasDeprecatedHeight.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasDeprecatedHeight.java Tue Jan  9 23:42:56 2007
@@ -28,6 +28,8 @@
   /**
    *  The height for this component.
    */
-  @TagAttribute @UIComponentTagAttribute()
+  @TagAttribute
+  @UIComponentTagAttribute()
+  @Deprecated
   void setHeight(String height);
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasDeprecatedWidth.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasDeprecatedWidth.java?view=diff&rev=494756&r1=494755&r2=494756
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasDeprecatedWidth.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasDeprecatedWidth.java Tue Jan  9 23:42:56 2007
@@ -28,6 +28,8 @@
   /**
    *  The width for this component.
    */
-  @TagAttribute @UIComponentTagAttribute()
+  @TagAttribute
+  @UIComponentTagAttribute()
+  @Deprecated    
   void setWidth(String width);
 }