Re: Reinitializing static variables

2007-03-20 Thread ravi p
t, use it in the child script without having to redefine the task. Gilles > -Original Message- > From: ravi p [mailto:[EMAIL PROTECTED] > Sent: mardi 20 mars 2007 13:23 > To: Ant Users List > Subject: Re: Reinitializing static variables > > Thanks you very much, it it wor

RE: Reinitializing static variables

2007-03-20 Thread Gilles Scokart
: ravi p [mailto:[EMAIL PROTECTED] > Sent: mardi 20 mars 2007 13:23 > To: Ant Users List > Subject: Re: Reinitializing static variables > > Thanks you very much, it it working. > but I am calling these tasks using ant task, I mean both task are in > different projects, if I ca

Re: Reinitializing static variables

2007-03-20 Thread ravi p
ailto:[EMAIL PROTECTED] > Sent: mardi 20 mars 2007 7:54 > To: user@ant.apache.org > Subject: Reinitializing static variables > > hi , > > I have written two ant tasks, in one task I have static final List object, > also I am adding objects into this static list object, in

RE: Reinitializing static variables

2007-03-20 Thread Gilles Scokart
Make sure your tasks are defined in the same loader (an option of the taskdef task). Gilles > -Original Message- > From: ravi p [mailto:[EMAIL PROTECTED] > Sent: mardi 20 mars 2007 7:54 > To: user@ant.apache.org > Subject: Reinitializing static variables > > hi , &g

AW: Reinitializing static variables

2007-03-20 Thread Jan.Materne
e Nachricht- >Von: ravi p [mailto:[EMAIL PROTECTED] >Gesendet: Dienstag, 20. März 2007 07:54 >An: user@ant.apache.org >Betreff: Reinitializing static variables > >hi , > >I have written two ant tasks, in one task I have static final >List object, >also I am adding

Reinitializing static variables

2007-03-19 Thread ravi p
hi , I have written two ant tasks, in one task I have static final List object, also I am adding objects into this static list object, in another task, if I want retrieve the objects from the static list, it is giving zero results. Any thoughts , regarding how can I share a static object between