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/15 18:12:46 UTC

svn commit: r1103441 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/LinkedRuleBuilder.java

Author: simonetripodi
Date: Sun May 15 16:12:46 2011
New Revision: 1103441

URL: http://svn.apache.org/viewvc?rev=1103441&view=rev
Log:
fixed wrong javadoc

Modified:
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/LinkedRuleBuilder.java

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/LinkedRuleBuilder.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/LinkedRuleBuilder.java?rev=1103441&r1=1103440&r2=1103441&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/LinkedRuleBuilder.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/binder/LinkedRuleBuilder.java Sun May 15 16:12:46 2011
@@ -136,8 +136,10 @@ public final class LinkedRuleBuilder
     }
 
     /**
-     * Sets properties on the object at the top of the stack,
-     * based on child elements with names matching properties on that  object.
+     * Calls a method on the (top-1) (parent) object, passing the top object (child) as an argument,
+     * commonly used to establish parent-child relationships.
+     *
+     * @param methodName Method name of the parent method to call
      */
     public SetNextBuilder setNext( String methodName )
     {