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/28 13:44:28 UTC

svn commit: r1128609 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/CallParamRule.java

Author: simonetripodi
Date: Sat May 28 11:44:27 2011
New Revision: 1128609

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

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

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/CallParamRule.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/CallParamRule.java?rev=1128609&r1=1128608&r2=1128609&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/CallParamRule.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/CallParamRule.java Sat May 28 11:44:27 2011
@@ -129,7 +129,7 @@ public class CallParamRule
     /**
      * Set the attribute from which to save the parameter value.
      *
-     * @param The attribute from which to save the parameter value
+     * @param attributeName The attribute from which to save the parameter value
      * @since 3.0
      */
     public void setAttributeName( String attributeName )
@@ -138,9 +138,7 @@ public class CallParamRule
     }
 
     /**
-     * Process the start of this element.
-     * 
-     * @param attributes The attribute list for this element
+     * {@inheritDoc}
      */
     @Override
     public void begin( String namespace, String name, Attributes attributes )
@@ -184,9 +182,7 @@ public class CallParamRule
     }
 
     /**
-     * Process the body text of this element.
-     * 
-     * @param bodyText The body text of this element
+     * {@inheritDoc}
      */
     @Override
     public void body( String namespace, String name, String text )
@@ -206,7 +202,7 @@ public class CallParamRule
     }
 
     /**
-     * Process any body texts now.
+     * {@inheritDoc}
      */
     @Override
     public void end( String namespace, String name )
@@ -220,7 +216,7 @@ public class CallParamRule
     }
 
     /**
-     * Render a printable version of this Rule.
+     * {@inheritDoc}
      */
     @Override
     public String toString()