Re: How to set an Ant task attribute with type of string array

2008-09-28 Thread Nan Null
There is an existing Ant task. I need to set the attribute extraClasses. Open the task's source code, it looks like this: public String[] getExtraClasses() public void setExtraClasses(String[] extraClasses) I didn't write the code, and prefer not modify this code even it's open source (because o

Re: How to set an Ant task attribute with type of string array

2008-09-28 Thread supareno
what you wanna do? it may exist an other way to do what you wanna do :-) for example, adding a new jar to your classpath??? There is an Ant task, where it has this method: public String[] getExtraClasses() public void setExtraClasses(String[] extraClasses) How do I set these extra classes? Th