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

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DPaths.java478 private Path otherSearchPath; field in class:Paths
480 Collection<File> otherSearchPath() { method in class:Paths
481 if (otherSearchPath == null) {
486 otherSearchPath = userClassPath;
488 otherSearchPath = new Path();
489 otherSearchPath.addAll(userClassPath);
490 otherSearchPath.addAll(sourcePath);
493 return Collections.unmodifiableCollection(otherSearchPath);

Completed in 23 milliseconds