Return-Path: Delivered-To: apmail-incubator-click-commits-archive@minotaur.apache.org Received: (qmail 45197 invoked from network); 17 May 2009 19:26:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 17 May 2009 19:26:18 -0000 Received: (qmail 89591 invoked by uid 500); 17 May 2009 19:26:18 -0000 Delivered-To: apmail-incubator-click-commits-archive@incubator.apache.org Received: (qmail 89577 invoked by uid 500); 17 May 2009 19:26:18 -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 89567 invoked by uid 99); 17 May 2009 19:26:18 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 May 2009 19:26:18 +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; Sun, 17 May 2009 19:26:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3112623888A6; Sun, 17 May 2009 19:25:56 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r775741 - /incubator/click/trunk/click/extras/src/org/apache/click/extras/prototype/CalendarField.java Date: Sun, 17 May 2009 19:25:56 -0000 To: click-commits@incubator.apache.org From: sabob@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090517192556.3112623888A6@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sabob Date: Sun May 17 19:25:55 2009 New Revision: 775741 URL: http://svn.apache.org/viewvc?rev=775741&view=rev Log: renamed method to renderCalendarButton Modified: incubator/click/trunk/click/extras/src/org/apache/click/extras/prototype/CalendarField.java Modified: incubator/click/trunk/click/extras/src/org/apache/click/extras/prototype/CalendarField.java URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/extras/src/org/apache/click/extras/prototype/CalendarField.java?rev=775741&r1=775740&r2=775741&view=diff ============================================================================== --- incubator/click/trunk/click/extras/src/org/apache/click/extras/prototype/CalendarField.java (original) +++ incubator/click/trunk/click/extras/src/org/apache/click/extras/prototype/CalendarField.java Sun May 17 19:25:55 2009 @@ -352,7 +352,7 @@ } super.render(buffer); - renderCalendar(buffer); + renderCalendarButton(buffer); if (help != null) { buffer.append(help); @@ -362,11 +362,12 @@ // ------------------------------------------------------ Protected Methods /** - * Render the calendar HTML representation to the buffer. + * Render the calendar button HTML representation to the buffer. * - * @param buffer the buffer to render the calendar HTML representation to + * @param buffer the buffer to render the calendar button HTML + * representation to */ - protected void renderCalendar(HtmlStringBuffer buffer) { + protected void renderCalendarButton(HtmlStringBuffer buffer) { if (!isReadonly() && !isDisabled()) { Context context = getContext();