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

/openjdk7/jdk/src/share/classes/java/nio/file/
H A DPaths.java38 public final class Paths { class
39 private Paths() { } method in class:Paths
107 * Paths.get(</tt><i>p</i><tt>.{@link Path#toUri() toUri}()).equals(</tt>
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DPaths.java62 public class Paths { class
65 protected static final Context.Key<Paths> pathsKey =
66 new Context.Key<Paths>();
68 /** Get the Paths instance for this context.
70 * @return the Paths instance for this context
72 public static Paths instance(Context context) {
73 Paths instance = context.get(pathsKey);
75 instance = new Paths(context);
91 protected Paths(Context context) { method in class:Paths
428 .expandJarClassPaths(true) // Only search user jars for Class-Paths
[all...]

Completed in 49 milliseconds