Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5BF6C663E for ; Tue, 24 May 2011 15:09:15 +0000 (UTC) Received: (qmail 68925 invoked by uid 500); 24 May 2011 15:09:15 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 68851 invoked by uid 500); 24 May 2011 15:09:15 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 68844 invoked by uid 99); 24 May 2011 15:09:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 May 2011 15:09:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 May 2011 15:09:14 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 057B723888CD; Tue, 24 May 2011 15:08:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1127106 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/annotations/rules/CallParam.java Date: Tue, 24 May 2011 15:08:53 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110524150854.057B723888CD@eris.apache.org> 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;