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/07 22:40:35 UTC

svn commit: r1180215 - /commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/TransposedPredicate.java

Author: simonetripodi
Date: Fri Oct  7 20:40:35 2011
New Revision: 1180215

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

Modified:
    commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/TransposedPredicate.java

Modified: commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/TransposedPredicate.java
URL: http://svn.apache.org/viewvc/commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/TransposedPredicate.java?rev=1180215&r1=1180214&r2=1180215&view=diff
==============================================================================
--- commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/TransposedPredicate.java (original)
+++ commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/TransposedPredicate.java Fri Oct  7 20:40:35 2011
@@ -36,6 +36,8 @@ import org.apache.commons.functor.Binary
  * an instance whose delegate is not
  * <code>Serializable</code> will result in an exception.
  * </p>
+ * @param <L> the left argument type.
+ * @param <R> the right argument type.
  * @version $Revision$ $Date$
  * @author Rodney Waldhoff
  */
@@ -46,6 +48,9 @@ public class TransposedPredicate<L, R> i
     private static final long serialVersionUID = 3441209087576289240L;
     // attributes
     // ------------------------------------------------------------------------
+    /**
+     * The adapted predicate.
+     */
     private final BinaryPredicate<? super R, ? super L> predicate;
 
     // constructor
@@ -108,6 +113,9 @@ public class TransposedPredicate<L, R> i
     // ------------------------------------------------------------------------
     /**
      * Return the transposition of <code>p</code>.
+     *
+     * @param <L> the left argument type.
+     * @param <R> the right argument type.
      * @param p BinaryPredicate to transpose
      * @return TransposedPredicate
      */