Author: simonetripodi
Date: Tue Aug 23 16:38:12 2011
New Revision: 1160785
URL: http://svn.apache.org/viewvc?rev=1160785&view=rev
Log:
fixed checkstyle violation: Type Javadoc comment is missing an @param <E> tag.
Modified:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/Generator.java
Modified:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/Generator.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/Generator.java?rev=1160785&r1=1160784&r2=1160785&view=diff
==============================================================================
---
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/Generator.java
(original)
+++
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/generator/Generator.java
Tue Aug 23 16:38:12 2011
@@ -22,6 +22,7 @@ import org.apache.commons.functor.UnaryP
* The Generator interface defines a number of useful actions applying
UnaryFunctors
* to each in a series of argument Objects.
*
+ * @param <E> the type of elements held in this generator.
* @version $Revision$ $Date$
* @author Jason Horman ([email protected])
* @author Rodney Waldhoff
@@ -55,7 +56,6 @@ public interface Generator<E> {
/**
* Same as to(new CollectionTransformer(collection)).
- * @param <E> the type of elements held in the input/output collection.
* @param collection Collection to which my elements should be added
* @return <code>collection</code>
*/
@@ -63,7 +63,6 @@ public interface Generator<E> {
/**
* Same as to(new CollectionTransformer()).
- * @param <E> the type of elements held in the output collection.
* @return Collection
*/
Collection<? super E> toCollection();