You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2009/01/17 03:51:13 UTC

svn commit: r735214 - in /myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component: UICommand.java UIInput.java

Author: lu4242
Date: Fri Jan 16 18:51:13 2009
New Revision: 735214

URL: http://svn.apache.org/viewvc?rev=735214&view=rev
Log:
MYFACES-2135 Remove @Deprecated annotations inserted on api methods, since this annotation is runtime type and changes method signature

Modified:
    myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/UICommand.java
    myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/UIInput.java

Modified: myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/UICommand.java
URL: http://svn.apache.org/viewvc/myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/UICommand.java?rev=735214&r1=735213&r2=735214&view=diff
==============================================================================
--- myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/UICommand.java (original)
+++ myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/UICommand.java Fri Jan 16 18:51:13 2009
@@ -88,7 +88,6 @@
      * 
      * @deprecated Use getActionExpression() instead.
      */
-    @Deprecated
     public MethodBinding getAction()
     {
         MethodExpression actionExpression = getActionExpression();
@@ -107,7 +106,6 @@
     /**
      * @deprecated Use setActionExpression instead.
      */
-    @Deprecated
     public void setAction(MethodBinding action)
     {
         if (action != null)
@@ -259,7 +257,6 @@
      * 
      * @deprecated
      */
-    @Deprecated
     @JSFProperty(stateHolder = true, returnSignature = "void", methodSignature = "javax.faces.event.ActionEvent")
     public MethodBinding getActionListener()
     {
@@ -276,7 +273,9 @@
         return null;
     }
 
-    @Deprecated
+    /**
+     * @deprecated
+     */
     @JSFProperty(returnSignature="void",methodSignature="javax.faces.event.ActionEvent")
     public void setActionListener(MethodBinding actionListener)
     {

Modified: myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/UIInput.java
URL: http://svn.apache.org/viewvc/myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/UIInput.java?rev=735214&r1=735213&r2=735214&view=diff
==============================================================================
--- myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/UIInput.java (original)
+++ myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/component/UIInput.java Fri Jan 16 18:51:13 2009
@@ -656,8 +656,10 @@
         return null;
     }
 
-    /** See getValidator. */
-    @Deprecated
+    /** See getValidator.
+     *  
+     * @deprecated 
+     */
     public void setValidator(MethodBinding validator)
     {
         this._validator = validator;
@@ -725,7 +727,6 @@
      * 
      * @deprecated
      */
-    @Deprecated
     @JSFProperty(stateHolder = true, returnSignature = "void", methodSignature = "javax.faces.event.ValueChangeEvent")
     public MethodBinding getValueChangeListener()
     {
@@ -747,7 +748,6 @@
      * 
      * @deprecated
      */
-    @Deprecated
     public void setValueChangeListener(MethodBinding valueChangeListener)
     {
         this._valueChangeListener = valueChangeListener;