Re: javabeans with Collection (Set)

2006-10-29 Thread BISO
Dear Laurie, Thanks alot for your support. my registration code: ConvertUtils.register(new SetConverter(),Set.class); BISO Laurie Harper wrote: > > I haven't tried it, but I'd assume you would have to register a > converter for String[], rather than just String. What doe

Re: javabeans with Collection (Set)

2006-10-24 Thread BISO
Thanks Laurie for your response. I used BeanUtils and It worked well with me :) Unfortunately, convert(Class type, Object value) works only with single Object not Object array. Do you know away to make it work with arrays. My goal to Convert String[] to a java.util.Set Thanks again BISO

javabeans with Collection (Set)

2006-10-23 Thread BISO
urn values; } public void setValues(Set values) { this.values = values; } } -- Thanks in advance BISO -- View this message in context: http://www.nabble.com/javabeans-with-