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

/opengrok/test/org/opensolaris/opengrok/util/
H A DTestRepository.java43 private File sourceRoot; field in class:TestRepository
49 sourceRoot = FileUtilities.createTemporaryDirectory("source");
61 FileUtilities.extractArchive(sourceBundle, sourceRoot);
62 RuntimeEnvironment.getInstance().setSourceRoot(sourceRoot.getAbsolutePath());
72 if (sourceRoot != null) {
73 FileUtilities.removeDirs(sourceRoot);
85 return sourceRoot.getAbsolutePath();
/opengrok/src/org/opensolaris/opengrok/web/
H A DSearchHelper.java102 public File sourceRoot; field in class:SearchHelper
/opengrok/src/org/opensolaris/opengrok/configuration/
H A DConfiguration.java88 private String sourceRoot; field in class:Configuration
485 return sourceRoot;
488 public void setSourceRoot(String sourceRoot) { argument
489 this.sourceRoot = sourceRoot;
H A DRuntimeEnvironment.java328 * @param sourceRoot the location of the sources
330 public void setSourceRoot(String sourceRoot) { argument
331 configuration.setSourceRoot(getCanonicalPath(sourceRoot));
347 String sourceRoot = getSourceRootPath();
348 if (canonicalPath.startsWith(sourceRoot)) {
349 return canonicalPath.substring(sourceRoot.length() + stripCount);
359 + "] relative to source root [" + sourceRoot + "]");

Completed in 250 milliseconds