RE: XMLForm: how to access to a Collection

2003-03-27 Thread Sylvain.Thevoz
There is nothing displayed. It seems that the view don't access to the collection. -Message d'origine- De: ivelin [mailto:[EMAIL PROTECTED] Date: jeudi, 27. mars 2003 14:30 À: [EMAIL PROTECTED] Objet: Re: XMLForm: how to access to a Collection What is the error, exception?

Re: XMLForm: how to access to a Collection

2003-03-27 Thread ivelin
What is the error, exception? -=Ivelin=- - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 27, 2003 7:25 AM Subject: RE: XMLForm: how to access to a Collection Hi Ivelin, I have stick the collection into the JavaBean of the form

RE: XMLForm: how to access to a Collection

2003-03-27 Thread Sylvain.Thevoz
jeudi, 27. mars 2003 14:10 À: [EMAIL PROTECTED] Objet: Re: XMLForm: how to access to a Collection You need to stick the collection in a simple JavaBean container. public class BeanContainer { Collection get/setMyCollection(); } then ... -=Ivelin=- - Original Message - Fro

Re: XMLForm: how to access to a Collection

2003-03-27 Thread ivelin
9 AM Subject: XMLForm: how to access to a Collection Hello, I'm trying to access to a Java Collection from within a XMLForm view. The Java code is: code ... Collection col = new HashSet(); ... while (iterator.hasNext()) { Group group = (Group) iter.next(); col.add(group); } ...

XMLForm: how to access to a Collection

2003-03-27 Thread Sylvain.Thevoz
Hello, I'm trying to access to a Java Collection from within a XMLForm view. The Java code is: code ... Collection col = new HashSet(); ... while (iterator.hasNext()) { Group group = (Group) iter.next(); col.add(group); } ... code On my debugger the Collection object "col" lo