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 30BB4698C for ; Sat, 28 May 2011 13:14:05 +0000 (UTC) Received: (qmail 85350 invoked by uid 500); 28 May 2011 13:14:05 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 85296 invoked by uid 500); 28 May 2011 13:14:04 -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 85289 invoked by uid 99); 28 May 2011 13:14:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 28 May 2011 13:14:04 +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; Sat, 28 May 2011 13:14:03 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E8E5E238897F; Sat, 28 May 2011 13:13:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1128636 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Digester.java Date: Sat, 28 May 2011 13:13:43 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110528131343.E8E5E238897F@eris.apache.org> Author: simonetripodi Date: Sat May 28 13:13:43 2011 New Revision: 1128636 URL: http://svn.apache.org/viewvc?rev=1128636&view=rev Log: added missing @param pattern javadoc Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Digester.java Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Digester.java URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Digester.java?rev=1128636&r1=1128635&r2=1128636&view=diff ============================================================================== --- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Digester.java (original) +++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Digester.java Sat May 28 13:13:43 2011 @@ -1961,6 +1961,7 @@ public class Digester * Add a "call parameter" rule. This will either take a parameter from the stack or from the current element body * text. * + * @param pattern Element matching pattern * @param paramIndex The zero-relative parameter number * @param fromStack Should the call parameter be taken from the top of the stack? * @see CallParamRule @@ -1974,6 +1975,7 @@ public class Digester * Add a "call parameter" rule that sets a parameter from the stack. This takes a parameter from the given position * on the stack. * + * @param pattern Element matching pattern * @param paramIndex The zero-relative parameter number * @param stackIndex set the call parameter to the stackIndex'th object down the stack, where 0 is the top of the * stack, 1 the next element down and so on @@ -2006,6 +2008,7 @@ public class Digester * despite the paramObj being passed in here as type Object, the target method can declare its parameters as being * the true type of the object (or some ancestor type, according to the usual type-conversion rules). * + * @param pattern Element matching pattern * @param paramIndex The zero-relative parameter number * @param paramObj Any arbitrary object to be passed to the target method. * @see CallMethodRule