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/28 15:13:43 UTC

svn commit: r1128636 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Digester.java

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