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 17:56:18 UTC

svn commit: r1128690 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/StackAction.java

Author: simonetripodi
Date: Sat May 28 15:56:17 2011
New Revision: 1128690

URL: http://svn.apache.org/viewvc?rev=1128690&view=rev
Log:
fixed javadoc violation: Expected @param tag for '<T>'.

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

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/StackAction.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/StackAction.java?rev=1128690&r1=1128689&r2=1128690&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/StackAction.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/StackAction.java Sat May 28 15:56:17 2011
@@ -44,7 +44,8 @@ public interface StackAction
 
     /**
      * Invoked just before an object is to be pushed onto a digester stack.
-     * 
+     *
+     * @param <T> whatever type is accepted
      * @param d is the digester instance.
      * @param stackName is the name of the stack onto which the object has been pushed. Null is passed to indicate the
      *            default stack.
@@ -57,7 +58,8 @@ public interface StackAction
 
     /**
      * Invoked just after an object has been popped from a digester stack.
-     * 
+     *
+     * @param <T> whatever type is accepted
      * @param d is the digester instance.
      * @param stackName is the name of the stack from which the object has been popped. Null is passed to indicate the
      *            default stack.