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/08 14:37:46 UTC

svn commit: r152672 - jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/actions/SetPropertiesAction.java

Author: skitching
Date: Tue Feb  8 05:37:44 2005
New Revision: 152672

URL: http://svn.apache.org/viewcvs?view=rev&rev=152672
Log:
Minor javadoc tweak

Modified:
    jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/actions/SetPropertiesAction.java

Modified: jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/actions/SetPropertiesAction.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/actions/SetPropertiesAction.java?view=diff&r1=152671&r2=152672
==============================================================================
--- jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/actions/SetPropertiesAction.java (original)
+++ jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/actions/SetPropertiesAction.java Tue Feb  8 05:37:44 2005
@@ -82,7 +82,7 @@
      *      HashMap map = new HashMap();
      *      map.put("class", "className");
      *      map.put("ignore", null);
-     *      SetPropertiesAction(map);
+     *      Action action = new SetPropertiesAction(map);
      * </pre></code></p>
      *
      * <p>See also {@link #addAlias} which allows the custom mapping to be
@@ -130,7 +130,7 @@
      * to the <code>state</code> property.
      * All other attributes are mapped as usual using exact name matching.
      * <code><pre>
-     *      SetPropertiesAction(
+     *      Action action = new SetPropertiesAction(
      *                new String[] {"alt-city", "alt-state"},
      *                new String[] {"city", "state"});
      * </pre></code>
@@ -142,7 +142,7 @@
      * than be passed to a setIgnore method (the default behaviour). All other
      * attributes are mapped as usual using exact name matching.
      * <code><pre>
-     *      SetPropertiesAction(
+     *      Action action = new SetPropertiesAction(
      *                new String[] {"class", "ignore"},
      *                new String[] {"className"});
      * </pre></code>



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