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:06:35 UTC

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

Author: simonetripodi
Date: Sat Oct 15 21:06:34 2011
New Revision: 1183709

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

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

Modified: commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/UntilGenerate.java
URL: http://svn.apache.org/viewvc/commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/UntilGenerate.java?rev=1183709&r1=1183708&r2=1183709&view=diff
==============================================================================
--- commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/UntilGenerate.java (original)
+++ commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/UntilGenerate.java Sat Oct 15 21:06:34 2011
@@ -23,9 +23,14 @@ import org.apache.commons.functor.UnaryP
  * Wrap another {@link Generator} such that {@link #run(UnaryProcedure)} terminates once
  * a condition has been satisfied.
  *
+ * @param <E> the type of elements held in this generator.
  * @version $Revision$ $Date$
  */
 public class UntilGenerate<E> extends BaseGenerator<E> {
+
+    /**
+     * The condition has to verified in order to execute the generation.
+     */
     private final UnaryPredicate<? super E> test;
 
     /**