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

/openjdk7/jdk/test/java/net/URL/
H A DRelativePath.java32 public class RelativePath { class
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DRelativePath.java43 public abstract class RelativePath implements Comparable<RelativePath> { class in inherits:Comparable
47 protected RelativePath(String p) { method in class:RelativePath
61 public int compareTo(RelativePath other) {
67 if (!(other instanceof RelativePath))
69 return path.equals(((RelativePath) other).path);
94 public static class RelativeDirectory extends RelativePath {
136 boolean contains(RelativePath other) {
151 public static class RelativeFile extends RelativePath {
169 RelativeFile(RelativeDirectory d, RelativePath
[all...]

Completed in 45 milliseconds