You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sk...@apache.org on 2005/02/21 04:45:14 UTC

svn commit: r154621 - jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies

Author: skitching
Date: Sun Feb 20 19:45:13 2005
New Revision: 154621

URL: http://svn.apache.org/viewcvs?view=rev&rev=154621
Log:
Javadoc tweaks only

Modified:
    jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromClass.java
    jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromDfltClass.java
    jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromDfltMethod.java
    jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromMethod.java
    jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderSetProperties.java

Modified: jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromClass.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromClass.java?view=diff&r1=154620&r2=154621
==============================================================================
--- jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromClass.java (original)
+++ jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromClass.java Sun Feb 20 19:45:13 2005
@@ -71,7 +71,7 @@
      * The returned object (when non-null) will invoke the target method
      * on the selected class whenever its addRules method is invoked. The
      * target method is expected to have the following prototype:
-     * <code> public static void xxxxx(RuleManager rm, String patternPrefix); </code>
+     * <code> public static void xxxxx(RuleManager rm, String path); </code>
      * <p>
      * The target method can be specified in several ways. If this object's
      * constructor was passed a non-null methodAttr parameter, and the

Modified: jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromDfltClass.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromDfltClass.java?view=diff&r1=154620&r2=154621
==============================================================================
--- jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromDfltClass.java (original)
+++ jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromDfltClass.java Sun Feb 20 19:45:13 2005
@@ -64,7 +64,7 @@
      * The returned object (when non-null) will invoke the target method
      * on the selected class whenever its addRules method is invoked. The
      * target method is expected to have the following prototype:
-     * <code> public static void xxxxx(RuleManager rm, String patternPrefix); </code>
+     * <code> public static void xxxxx(RuleManager rm, String path); </code>
      * <p>
      * The classloader used to locate the "RuleInfo" class is the one returned
      * by context.getClassLoader, not the one used to load the pluginClass.

Modified: jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromDfltMethod.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromDfltMethod.java?view=diff&r1=154620&r2=154621
==============================================================================
--- jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromDfltMethod.java (original)
+++ jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromDfltMethod.java Sun Feb 20 19:45:13 2005
@@ -62,7 +62,7 @@
      * The returned object (when non-null) will invoke the target method
      * on the plugin class whenever its addRules method is invoked. The
      * target method is expected to have the following prototype:
-     * <code> public static void xxxxx(RuleManager rm, String patternPrefix); </code>
+     * <code> public static void xxxxx(RuleManager rm, String path); </code>
      */
     public RuleLoader findLoader(
     Context context, Class pluginClass, Properties p)

Modified: jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromMethod.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromMethod.java?view=diff&r1=154620&r2=154621
==============================================================================
--- jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromMethod.java (original)
+++ jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderFromMethod.java Sun Feb 20 19:45:13 2005
@@ -58,7 +58,7 @@
      * The returned object (when non-null) will invoke the target method
      * on the plugin class whenever its addRules method is invoked. The
      * target method is expected to have the following prototype:
-     * <code> public static void xxxxx(Digester d, String patternPrefix); </code>
+     * <code> public static void xxxxx(Digester d, String path); </code>
      */
     public RuleLoader findLoader(
     Context context, Class pluginClass, Properties p)

Modified: jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderSetProperties.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderSetProperties.java?view=diff&r1=154620&r2=154621
==============================================================================
--- jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderSetProperties.java (original)
+++ jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/plugins/strategies/FinderSetProperties.java Sun Feb 20 19:45:13 2005
@@ -31,7 +31,7 @@
  * A rule-finding algorithm which expects the user to specify whether
  * "automatic property setting" is desired. If this class discovers that
  * this is in fact the case for a declaration, then a RuleLoader is returned
- * which, when invoked, adds a single SetPropertiesRule instance to the
+ * which, when invoked, adds a single SetPropertiesAction instance to the
  * digester.
  * <p>
  * This allows ordinary JavaBean classes to be used as plugins, and have
@@ -56,7 +56,7 @@
     }
     
     /**
-     * Create a rule-finder which will arrange for a SetPropertiesRule to
+     * Create a rule-finder which will arrange for a SetPropertiesAction to
      * be defined for each instance of a plugin, so that xml attributes
      * map to bean properties.
      * <p>
@@ -79,10 +79,10 @@
      * If no custom source of rules for a plugin is found, then the user
      * almost always wants xml attributes to map to java bean properties,
      * so this is the default behaviour unless the user explicitly indicates
-     * that they do <i>not</i> want a SetPropertiesRule to be provided for
+     * that they do <i>not</i> want a SetPropertiesAction to be provided for
      * the plugged-in class.
      * <p>
-     * The returned object (when non-null) will add a SetPropertiesRule to
+     * The returned object (when non-null) will add a SetPropertiesAction to
      * the digester whenever its addRules method is invoked.
      */
     public RuleLoader findLoader(



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org