Author: simonetripodi
Date: Sat Oct 15 21:07:21 2011
New Revision: 1183712
URL: http://svn.apache.org/viewvc?rev=1183712&view=rev
Log:
added missing javadoc comments
Modified:
commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/WhileGenerate.java
Modified:
commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/WhileGenerate.java
URL:
http://svn.apache.org/viewvc/commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/WhileGenerate.java?rev=1183712&r1=1183711&r2=1183712&view=diff
==============================================================================
---
commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/WhileGenerate.java
(original)
+++
commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/generator/WhileGenerate.java
Sat Oct 15 21:07:21 2011
@@ -23,9 +23,14 @@ import org.apache.commons.functor.UnaryP
* Wrap another {@link Generator} such that {@link #run(UnaryProcedure)}
continues
* as long as a condition is true (test before).
*
+ * @param <E> the type of elements held in this generator.
* @version $Revision$ $Date$
*/
public class WhileGenerate<E> extends BaseGenerator<E> {
+
+ /**
+ * The condition has to verified in order to execute the generation.
+ */
private final UnaryPredicate<? super E> test;
/**