You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/05/24 17:08:53 UTC

svn commit: r1127106 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/CallParam.java

Author: simonetripodi
Date: Tue May 24 15:08:53 2011
New Revision: 1127106

URL: http://svn.apache.org/viewvc?rev=1127106&view=rev
Log:
added missing @since tag

Modified:
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/CallParam.java

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/CallParam.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/CallParam.java?rev=1127106&r1=1127105&r2=1127106&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/CallParam.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/CallParam.java Tue May 24 15:08:53 2011
@@ -59,6 +59,7 @@ public @interface CallParam
      * The attribute from which to save the parameter value.
      *
      * @return the attribute from which to save the parameter value
+     * @since 3.0
      */
     String attributeName() default "";
 
@@ -66,6 +67,7 @@ public @interface CallParam
      * Flags the parameter to be set from the stack.
      * 
      * @return true if the parameter has to be set from the stack, false otherwise
+     * @since 3.0
      */
     boolean fromStack() default false;
 
@@ -73,6 +75,7 @@ public @interface CallParam
      * Sets the position of the object from the top of the stack.
      *
      * @return The position of the object from the top of the stack
+     * @since 3.0
      */
     int stackIndex() default 0;