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/10/15 23:05:25 UTC

svn commit: r1183707 - /commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/TransformedGenerator.java

Author: simonetripodi
Date: Sat Oct 15 21:05:25 2011
New Revision: 1183707

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

Modified:
    commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/TransformedGenerator.java

Modified: commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/TransformedGenerator.java
URL: http://svn.apache.org/viewvc/commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/TransformedGenerator.java?rev=1183707&r1=1183706&r2=1183707&view=diff
==============================================================================
--- commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/TransformedGenerator.java (original)
+++ commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/TransformedGenerator.java Sat Oct 15 21:05:25 2011
@@ -22,9 +22,15 @@ import org.apache.commons.functor.UnaryP
 /**
  * Generator that transforms the elements of another Generator.
  *
+ * @param <I> the type of elements held in the wrapped generator.
+ * @param <E> the type of elements held in this generator.
  * @version $Revision$ $Date$
  */
 public class TransformedGenerator<I, E> extends BaseGenerator<E> {
+
+    /**
+     * The UnaryFunction to apply to each element.
+     */
     private final UnaryFunction<? super I, ? extends E> func;
 
     /**