Searched refs:classSearchPath (Results 1 - 1 of 1) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DPaths.java131 // TODO: otherwise reset sourceSearchPath, classSearchPath as needed
463 private Path classSearchPath; field in class:Paths
465 public Collection<File> classSearchPath() { method in class:Paths
466 if (classSearchPath == null) {
470 classSearchPath = new Path();
471 classSearchPath.addAll(bootClassPath);
472 classSearchPath.addAll(userClassPath);
474 return Collections.unmodifiableCollection(classSearchPath);

Completed in 40 milliseconds