Title: RE: Jar files doesn't understand inner class

Thanks Nico. That works

Still I feel it is a problem because the dependecies file is generated in a previous task. I'm not sure how is defined in Ant but I feel that if a file name is in a file, it should be read as is. There are many tools which will generate filelist and they won't generate special files such as TickerPanel$$1

-----Original Message-----
From: Nico Seessle [mailto:[EMAIL PROTECTED]]
Sent: 8. toukokuuta 2001 12:05
To: [EMAIL PROTECTED]
Subject: Re: Jar files doesn't understand inner class


Can you try to modify the file that it reads

...
client/TickerPanel$$1.class
...

Maybe it's just the problem that Ant tries to handle $-things as a property and they need to be escaped normally (using a double-$).

Nico
----- Original Message -----
From: Carlos Quiroz
To: [EMAIL PROTECTED]
Sent: Tuesday, May 08, 2001 10:51 AM
Subject: Jar files doesn't understand inner class




Hi I'm trying to use the jar task to create an applet distribution and I'm using a file to feed the classes names to the jar task. However the task doesn't take inner classes as <class>$<inner>.class, for example with my file like this:

ui/ImageCanvas.class
client/TickerPanel.class
client/TickerPanel$1.class
client/SettingsPanel.class
It correctly jars the first two and last files but not the TickerPanel$1.class

Reply via email to