Return-Path: Delivered-To: apmail-incubator-click-commits-archive@minotaur.apache.org Received: (qmail 46674 invoked from network); 28 Apr 2009 18:28:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 28 Apr 2009 18:28:50 -0000 Received: (qmail 95862 invoked by uid 500); 28 Apr 2009 18:28:50 -0000 Delivered-To: apmail-incubator-click-commits-archive@incubator.apache.org Received: (qmail 95850 invoked by uid 500); 28 Apr 2009 18:28:50 -0000 Mailing-List: contact click-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: click-dev@incubator.apache.org Delivered-To: mailing list click-commits@incubator.apache.org Received: (qmail 95840 invoked by uid 99); 28 Apr 2009 18:28:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Apr 2009 18:28:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Tue, 28 Apr 2009 18:28:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 604E123888EB; Tue, 28 Apr 2009 18:28:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r769493 - /incubator/click/trunk/click/extras/src/org/apache/click/extras/tree/TreeListener.java Date: Tue, 28 Apr 2009 18:28:27 -0000 To: click-commits@incubator.apache.org From: sabob@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090428182827.604E123888EB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sabob Date: Tue Apr 28 18:28:26 2009 New Revision: 769493 URL: http://svn.apache.org/viewvc?rev=769493&view=rev Log: doco Modified: incubator/click/trunk/click/extras/src/org/apache/click/extras/tree/TreeListener.java Modified: incubator/click/trunk/click/extras/src/org/apache/click/extras/tree/TreeListener.java URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/extras/src/org/apache/click/extras/tree/TreeListener.java?rev=769493&r1=769492&r2=769493&view=diff ============================================================================== --- incubator/click/trunk/click/extras/src/org/apache/click/extras/tree/TreeListener.java (original) +++ incubator/click/trunk/click/extras/src/org/apache/click/extras/tree/TreeListener.java Tue Apr 28 18:28:26 2009 @@ -36,9 +36,9 @@ * @param tree tree the operation was made on * @param node node that was selected * @param context provides access to {@link org.apache.click.Context} - * @param oldValue contains the previous value of selected state + * @param previousState contains the previous selected state */ - public void nodeSelected(Tree tree, TreeNode node, Context context, boolean oldValue); + public void nodeSelected(Tree tree, TreeNode node, Context context, boolean previousState); /** * Invoked when user deselected the specified node. @@ -46,9 +46,9 @@ * @param tree tree the operation was made on * @param node node that was deselected * @param context provides access to {@link org.apache.click.Context} - * @param oldValue contains the previous value of selected state + * @param previousState contains the previous selected state */ - public void nodeDeselected(Tree tree, TreeNode node, Context context, boolean oldValue); + public void nodeDeselected(Tree tree, TreeNode node, Context context, boolean previousState); /** * Invoked when user expanded the specified node. @@ -56,9 +56,9 @@ * @param tree tree the operation was made on * @param node node that was expanded * @param context provides access to {@link org.apache.click.Context} - * @param oldValue contains the previous value of expanded state + * @param previousState contains the previous expanded state */ - public void nodeExpanded(Tree tree, TreeNode node, Context context, boolean oldValue); + public void nodeExpanded(Tree tree, TreeNode node, Context context, boolean previousState); /** * Invoked when user collapsed the specified node. @@ -66,7 +66,7 @@ * @param tree tree the operation was made on * @param node node that was collapsed * @param context provides access to {@link org.apache.click.Context} - * @param oldValue contains the previous value of selected state + * @param previousState contains the previous expanded state */ - public void nodeCollapsed(Tree tree, TreeNode node, Context context, boolean oldValue); + public void nodeCollapsed(Tree tree, TreeNode node, Context context, boolean previousState); }