Author: simonetripodi
Date: Mon Sep 26 12:49:53 2011
New Revision: 1175843
URL: http://svn.apache.org/viewvc?rev=1175843&view=rev
Log:
added missing javadoc comments
Modified:
commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/CompositeUnaryPredicate.java
Modified:
commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/CompositeUnaryPredicate.java
URL:
http://svn.apache.org/viewvc/commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/CompositeUnaryPredicate.java?rev=1175843&r1=1175842&r2=1175843&view=diff
==============================================================================
---
commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/CompositeUnaryPredicate.java
(original)
+++
commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/CompositeUnaryPredicate.java
Mon Sep 26 12:49:53 2011
@@ -42,6 +42,7 @@ import org.apache.commons.functor.adapte
* an instance whose delegates are not all
* <code>Serializable</code> will result in an exception.
* </p>
+ * @param <A> the predicate argument type.
* @version $Revision$ $Date$
* @author Rodney Waldhoff
*/
@@ -52,6 +53,9 @@ public final class CompositeUnaryPredica
private static final long serialVersionUID = 4880363949059265252L;
// attributes
// ------------------------------------------------------------------------
+ /**
+ * The adapted composite function.
+ */
private final CompositeUnaryFunction<? super A, Boolean> function;
// constructor
@@ -79,6 +83,7 @@ public final class CompositeUnaryPredica
// ------------------------------------------------------------------------
/**
* Fluently obtain a CompositeUnaryPredicate that applies our predicate to
the result of the preceding function.
+ * @param <P> the input function left argument and output predicate
argument types
* @param preceding UnaryFunction
* @return CompositeUnaryPredicate<P>
*/