added missing javadoc parameters

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/digester/trunk@1140045 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/commons/digester3/Rules.java b/src/main/java/org/apache/commons/digester3/Rules.java
index 6730f52..d3ed197 100644
--- a/src/main/java/org/apache/commons/digester3/Rules.java
+++ b/src/main/java/org/apache/commons/digester3/Rules.java
@@ -85,6 +85,8 @@
      * @param namespaceURI Namespace URI for which to select matching rules, or <code>null</code> to match regardless of
      *            namespace URI
      * @param pattern Nesting pattern to be matched
+     * @param name the local name if the parser is namespace aware, or just the element name otherwise
+     * @param attributes The attribute list of the current matching element
      * @return a List of all registered Rule instances that match the specified nesting pattern
      */
     List<Rule> match( String namespaceURI, String pattern, String name, Attributes attributes );