commandline.createArgument().setValue("-file");
commandline.createArgument().setValue(_outputFile.getPath());
// we have to find a cleaner way to put this output
}
PathTokenizer sourcesPath
= new PathTokenizer(getSourcespath().toString());
while (sourcesPath.hasMoreTokens()) {
File f = new File(sourcesPath.nextToken());
// not necessary as JDepend would fail, but why loose some time?
if (!f.exists() || !f.isDirectory()) {
throw new BuildException("\"" + f.getPath() + "\" does not "
+ "represent a valid directory. JDepend would fail.");