Re: Custom Tag / JavaBean question

2002-10-15 Thread Padhu Vinirs
Looks like you defined a type as java.util.Vector ( wtih rtexprvalue set to true ) in your tld for the accessList attribute ? -- padhu Cindy Ballreich wrote: I have a custom tag that takes a collection as one of it's parameters. I'd like to be able to give the name of an attribute (a

RE: Custom Tag / JavaBean question

2002-10-15 Thread Tim Moore
The problem lies in the fact that you've overloaded the setter method for accessList. According to the JavaBeans spec, you can't do that; only one setter per property name is supported. So, first of all, you'll need to give the attributes two different names and make them both optional. For

RE: Custom Tag / JavaBean question

2002-10-15 Thread Cindy Ballreich
This is great! It's exactly the information I needed. Thanks! At 01:57 PM 10/15/02 -0400, Tim Moore wrote: The problem lies in the fact that you've overloaded the setter method for accessList. According to the JavaBeans spec, you can't do that; only one setter per property name is supported.