Return-Path: Delivered-To: apmail-jakarta-tomcat-dev-archive@www.apache.org Received: (qmail 51341 invoked from network); 21 Sep 2005 08:07:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 21 Sep 2005 08:07:00 -0000 Received: (qmail 9047 invoked by uid 500); 21 Sep 2005 08:06:53 -0000 Delivered-To: apmail-jakarta-tomcat-dev-archive@jakarta.apache.org Received: (qmail 8991 invoked by uid 500); 21 Sep 2005 08:06:53 -0000 Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Tomcat Developers List" Reply-To: "Tomcat Developers List" Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 8975 invoked by uid 99); 21 Sep 2005 08:06:53 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [192.87.106.226] (HELO ajax.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Sep 2005 01:06:51 -0700 Received: by ajax.apache.org (Postfix, from userid 99) id 8529C122; Wed, 21 Sep 2005 10:06:30 +0200 (CEST) From: bugzilla@apache.org To: tomcat-dev@jakarta.apache.org Subject: DO NOT REPLY [Bug 36756] New: - taglib setter not found when having get, is and set method X-Bugzilla-Reason: AssignedTo Message-Id: <20050921080630.8529C122@ajax.apache.org> Date: Wed, 21 Sep 2005 10:06:30 +0200 (CEST) X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG� RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND� INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=36756 Summary: taglib setter not found when having get, is and set method Product: Tomcat 5 Version: 5.0.28 Platform: All OS/Version: other Status: NEW Severity: normal Priority: P2 Component: Jasper AssignedTo: tomcat-dev@jakarta.apache.org ReportedBy: keesvandieren@yahoo.com Hi, When I add extra attributes in java files, a get, is and set(String aValue), the setter can not be found. When I remove the is, everything works fine. Scenario: ... FormTag.java: public class FormTag extends TagBase { private String theReadOnly; public String getReadOnly() { return theReadOnly; } public boolean isReadOnly() { return StringUtils.isTrue(getReadOnly()); } public void setReadOnly(String aReadOnly) { theReadOnly = aReadOnly; } } This will not work. Removing the isReadOnly method makes everything work fine. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org