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/06/27 20:30:16 UTC

svn commit: r1140258 - /commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/AbstractMethodRule.java

Author: simonetripodi
Date: Mon Jun 27 18:30:16 2011
New Revision: 1140258

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

Modified:
    commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/AbstractMethodRule.java

Modified: commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/AbstractMethodRule.java
URL: http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/AbstractMethodRule.java?rev=1140258&r1=1140257&r2=1140258&view=diff
==============================================================================
--- commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/AbstractMethodRule.java (original)
+++ commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/AbstractMethodRule.java Mon Jun 27 18:30:16 2011
@@ -192,6 +192,11 @@ public abstract class AbstractMethodRule
         }
     }
 
+    /**
+     * Just performs the method execution.
+     *
+     * @throws Exception if any error occurs.
+     */
     private void invoke()
         throws Exception
     {
@@ -240,8 +245,18 @@ public abstract class AbstractMethodRule
         }
     }
 
+    /**
+     * Returns the argument object of method has to be invoked.
+     *
+     * @return the argument object of method has to be invoked.
+     */
     protected abstract Object getChild();
 
+    /**
+     * Returns the target object of method has to be invoked.
+     *
+     * @return the target object of method has to be invoked.
+     */
     protected abstract Object getParent();
 
     /**