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/30 23:12:08 UTC

svn commit: r1129376 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/plugins/RuleFinder.java

Author: simonetripodi
Date: Mon May 30 21:12:07 2011
New Revision: 1129376

URL: http://svn.apache.org/viewvc?rev=1129376&view=rev
Log:
added missing Javadoc

Modified:
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/plugins/RuleFinder.java

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/plugins/RuleFinder.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/plugins/RuleFinder.java?rev=1129376&r1=1129375&r2=1129376&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/plugins/RuleFinder.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/plugins/RuleFinder.java Mon May 30 21:12:07 2011
@@ -56,9 +56,13 @@ public abstract class RuleFinder
      * The properties object holds any xml attributes the user may have specified on the plugin declaration in order to
      * indicate how to locate the plugin rules.
      * <p>
-     * 
-     * @throws PluginConfigurationException if the algorithm finds a source of rules, but there is something invalid
-     *             about that source.
+     *
+     * @param d The digester instance where locating plugin classes
+     * @param pluginClass The plugin Java class
+     * @param p The properties object that holds any xml attributes the user may have specified on the plugin
+     *          declaration in order to indicate how to locate the plugin rules.
+     * @throws PluginException if the algorithm finds a source of rules, but there is something invalid
+     *         about that source.
      */
     public abstract RuleLoader findLoader( Digester d, Class<?> pluginClass, Properties p )
         throws PluginException;