public void addToTestClasspath(File f) { sources.addTestSource(f); testClasspath.add(f); }
public void addToClasspath(File f) { sources.addSource(f); classpath.add(f); }
protected String getClasspath(boolean includeTestSources, String cpSep) { return sources.getClasspath(includeTestSources, cpSep); }
public void addTestSource(File baseDir) { sources.addTestSource(baseDir); }
protected LinkedList<String> getSourcePaths(boolean includeTestSources) { return sources.getSourcePaths(includeTestSources); }