Author: simonetripodi
Date: Sat Oct 15 20:50:33 2011
New Revision: 1183690
URL: http://svn.apache.org/viewvc?rev=1183690&view=rev
Log:
added missing javadoc comments
Modified:
commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/UnarySequence.java
Modified:
commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/UnarySequence.java
URL:
http://svn.apache.org/viewvc/commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/UnarySequence.java?rev=1183690&r1=1183689&r2=1183690&view=diff
==============================================================================
---
commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/UnarySequence.java
(original)
+++
commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/UnarySequence.java
Sat Oct 15 20:50:33 2011
@@ -37,6 +37,7 @@ import org.apache.commons.functor.UnaryP
* an instance whose delegates are not all
* <code>Serializable</code> will result in an exception.
* </p>
+ * @param <A> the argument type.
* @version $Revision$ $Date$
* @author Rodney Waldhoff
*/
@@ -48,6 +49,9 @@ public class UnarySequence<A> implements
private static final long serialVersionUID = 9194268249717820246L;
// attributes
// ------------------------------------------------------------------------
+ /**
+ * The data structure to store the procedure sequence.
+ */
private List<UnaryProcedure<? super A>> list = new
ArrayList<UnaryProcedure<? super A>>();
// constructor