RE: trying to get access to fileset from new task to javac task

2003-08-25 Thread didge
vac.execute(); Why should the src fileset be immutable when not much else is, particularly classpath? No clue, maybe someone can shed some light on this... didge > -Original Message- > From: Dean Hiller [mailto:[EMAIL PROTECTED] > Sent: Monday, August 25, 2003 6:25 AM > To: Ant Devel

Re: trying to get access to fileset from new task to javac task

2003-08-25 Thread Dean Hiller
I am compiling the same src directory every time, but with different patterns. Javac uses the FileSet in MatchingTask. I currently have a hack into MatchingTask adding public void putNewFileSet(FileSet set) { fileset = set; } because I am not sure how to change out the FileSet of p

Re: trying to get access to fileset from new task to javac task

2003-08-25 Thread Stefan Bodewig
On Sun, 24 Aug 2003, Dean Hiller <[EMAIL PROTECTED]> wrote: > I am writing a new task that happens to wrap javac and call it a few > times. Is there any way to clear the FileSet? javac doesn't use a FileSet at all, or it uses a fresh FileSet for all and srcdir entries - depends on how you look