hi thanks Erik...I'll check....
maybe mapping the parameter "url" as "Collection" in my Task will do the
trick????
thanks
Francesco

-----Original Message-----
From: Erik Hatcher [mailto:[EMAIL PROTECTED]]
Sent: marted� 5 febbraio 2002 18.57
To: Ant Users List
Subject: Re: passing a Collection as paramater


Use this kind of syntax:

  <mytask>
    <url href=""/>
    .
    .
    .
    <url href=""/>
  </mytask>

Check Ant's source code for similar syntaxed tasks for the implementation
details.

    Erik

----- Original Message -----
From: "Marchioni Francesco" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, February 05, 2002 12:41 PM
Subject: passing a Collection as paramater


> Hi all,
> I'd like to know if it's possible to pass a Collection of parameters to my
> Own Task.
> At the moment I need to pass a list or urls to the Task in this way......
>
> <property name="url1" value="http://....."/>
> <property name="url2" value="http://....."/>
> <property name="url3" value="http://....."/>
>
>   <taskdef name="mytask" classname="BeanTask"/>
>
>     <mytask url1="${url1}" url2="${url2}" url3="${url3}"
>     </mytask>
>
> ...but as the url can grow up I'd rather find a way to pass a Collection
of
> elements
> to the bean. Does anybody know how to do it?
> Thanks
> Francesco
>
>
> --
> To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
>
>


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to