From commits-return-22587-apmail-commons-commits-archive=commons.apache.org@commons.apache.org Fri Oct 7 20:33:56 2011 Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4B5A295EC for ; Fri, 7 Oct 2011 20:33:56 +0000 (UTC) Received: (qmail 17436 invoked by uid 500); 7 Oct 2011 20:33:56 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 17336 invoked by uid 500); 7 Oct 2011 20:33:56 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 17328 invoked by uid 99); 7 Oct 2011 20:33:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Oct 2011 20:33:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Oct 2011 20:33:55 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id F35012388A6C for ; Fri, 7 Oct 2011 20:33:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1180207 - /commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/TransformedFunction.java Date: Fri, 07 Oct 2011 20:33:34 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111007203334.F35012388A6C@eris.apache.org> Author: simonetripodi Date: Fri Oct 7 20:33:34 2011 New Revision: 1180207 URL: http://svn.apache.org/viewvc?rev=1180207&view=rev Log: added missing javadoc comments Modified: commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/TransformedFunction.java Modified: commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/TransformedFunction.java URL: http://svn.apache.org/viewvc/commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/TransformedFunction.java?rev=1180207&r1=1180206&r2=1180207&view=diff ============================================================================== --- commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/TransformedFunction.java (original) +++ commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/composite/TransformedFunction.java Fri Oct 7 20:33:34 2011 @@ -23,6 +23,8 @@ import org.apache.commons.functor.UnaryF /** * A Function whose result is then run through a UnaryFunction. + * + * @param the returned value type. * @version $Revision$ $Date$ * @author Matt Benson */ @@ -33,15 +35,22 @@ public class TransformedFunction impl private static final long serialVersionUID = 1201423110871342081L; /** - * Type-remembering helper - * @param + * Type-remembering helper. + * + * @param the adapted function argument type */ private static final class Helper implements Function, Serializable { /** * serialVersionUID declaration. */ private static final long serialVersionUID = -7177784125292465809L; + /** + * The preceding function. + */ private Function preceding; + /** + * The following function. + */ private UnaryFunction following; /** @@ -62,11 +71,14 @@ public class TransformedFunction impl } } + /** + * The adapted helper. + */ private final Helper helper; /** * Create a new TransformedFunction. - * @param + * @param the preceding function argument type. * @param preceding Function * @param following UnaryFunction */