All:

I'm trying to extend the the copy task and am running into a brick wall. 

What I am trying to do is to extend the task so that it can accept a property 
which contains a comma separated list of FileSet references. For example:
<my:copy dir="thisDir" filesetlist="thisRef,thatRef" />. my:copy would do 
nothing more than parse filesetlist and call the copy task for each 
reference.

I thought I should be able to do something like this:

Copy newCopy = new Copy();
newCopy.setTodir(new File(thisDir));
newCopy.addFileset( (FileSet) getProject().getReference(thisRef));
newCopy.execute();

This isn't working - I get a null pointer exception on line 382 of 
AbstractFileSet on the statement:
        p.log(getDataTypeName() + ": Setup scanner in dir " + dir
            + " with " + defaultPatterns, Project.MSG_DEBUG);

I believe it is choking on defaultPatterns.

I am undoubtedly missing something obvious, but would appreciate some guidance 
(and forbearance!)

-steve


-- 


Stephen Nesbitt
Senior Configuration Management Engineer
The Cobalt Group
[EMAIL PROTECTED]
x8271

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

Reply via email to