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:38:48 UTC

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

Author: simonetripodi
Date: Fri Oct  7 20:38:48 2011
New Revision: 1180212

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

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

Modified: commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/TransposedFunction.java
URL: http://svn.apache.org/viewvc/commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/TransposedFunction.java?rev=1180212&r1=1180211&r2=1180212&view=diff
==============================================================================
--- commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/TransposedFunction.java (original)
+++ commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/TransposedFunction.java Fri Oct  7 20:38:48 2011
@@ -36,6 +36,10 @@ 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.
+ * @param <T> the returned value type.
  * @version $Revision$ $Date$
  * @author Rodney Waldhoff
  */
@@ -46,6 +50,9 @@ public class TransposedFunction<L, R, T>
     private static final long serialVersionUID = -5824252875453493940L;
     // attributes
     // ------------------------------------------------------------------------
+    /**
+     * The adapted function.
+     */
     private final BinaryFunction<? super R, ? super L, ? extends T> function;
 
     // constructor
@@ -109,6 +116,9 @@ public class TransposedFunction<L, R, T>
     // ------------------------------------------------------------------------
     /**
      * Transpose a BinaryFunction.
+     * @param <L> the left argument type.
+     * @param <R> the right argument type.
+     * @param <T> the returned value type.
      * @param f BinaryFunction to transpose
      * @return TransposedFunction
      */