public FileCollection getSourcePaths()
{
FileCollection collection = getProject().files(new Object[] {});
for (DelayedFile file : sourcePaths)
collection = collection.plus(getProject().files(file));
return collection;
}
public boolean isIncludeEmptyDirs()