I want to set a property before I call a task's perform() method.  
Unfortunately, that doesn't seem to be working...

// Set the property.
project.setUserProperty(property, files[j]);

// Run the tasks.
Iterator tasks = nestedTasks.iterator();
while (tasks.hasNext()) {
    Task task = (Task) tasks.next();
    task.perform();
}

In the task, the user property foo is unset.

-- 
Dr. Stacy J. Prowell, Research Associate Professor
The University of Tennessee, Dept. of Computer Science
mailto:[EMAIL PROTECTED]

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

Reply via email to