throw new IllegalStateException("Already normalized");
}
//XXX <Instantiations
if (defaultExcludes && caseSensitive && !isSuperSource
&& includeList.length == 0 && excludeList.length == 0) {
sourcePrefixSet.add(new PathPrefix(sourcePackage, new ResourceFilter() {
public boolean allows(String path) {
return path.startsWith(sourcePackage) && path.endsWith(".java");
}
}, isSuperSource));
return;
}
//XXX >Instantiations
PathPrefix pathPrefix = new PathPrefix(sourcePackage,
defaultFilters.customJavaFilter(includeList, excludeList,
defaultExcludes, caseSensitive), isSuperSource);
sourcePrefixSet.add(pathPrefix);
}