Searched defs:sourceRoot (Results 1 - 3 of 3) sorted by relevance

/opengrok-jel/test/org/opensolaris/opengrok/util/
H A DTestRepository.java40 private File sourceRoot; field in class:TestRepository
51 sourceRoot = FileUtilities.createTemporaryDirectory("source");
63 FileUtilities.extractArchive(sourceBundle, sourceRoot);
64 RuntimeEnvironment.getConfig().setSourceRoot(sourceRoot.getAbsolutePath());
77 if (sourceRoot != null) {
78 FileUtilities.removeDirs(sourceRoot);
97 return sourceRoot.getAbsolutePath();
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DSearchHelper.java76 public File sourceRoot; field in class:SearchHelper
/opengrok-jel/src/org/opensolaris/opengrok/configuration/
H A DConfiguration.java111 private String sourceRoot; field in class:Configuration
496 * @param sourceRoot the location of the sources
498 public void setSourceRoot(String sourceRoot) { argument
499 String p = getCanonicalPath(sourceRoot);
501 this.sourceRoot = p;
510 return sourceRoot;
518 return sourceRoot != null ? new File(sourceRoot) : null;
535 if (canonicalPath.startsWith(sourceRoot)) {
536 return canonicalPath.substring(sourceRoot
[all...]

Completed in 11 milliseconds