DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=43400>. 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=43400 Summary: enum support for tag libs Product: Tomcat 6 Version: unspecified Platform: All URL: http://www.007names.com OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: Jasper AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] Support for the direct use of enums in the attributes of tags. Assume there is the enum: public enum LoginType { account, manager, reseller; } and a setter for a tag called 'page': public void setLogin_required_type( LoginType login_required_type ) { ... then the jsp code: <ez:page login_required_type="account"/> would result in the generation of the java code: page_tag_instance.setLogin_required_type(LoginType.account); -- 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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]