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

/openjdk7/jdk/src/share/classes/java/nio/file/
H A DPath.java37 * <p> A {@code Path} represents a path that is hierarchical and composed of a
42 * The other name elements are directory names. A {@code Path} can represent a
44 * A {@code Path} is considered to be an <i>empty path</i> if it consists
47 * file system. {@code Path} defines the {@link #getFileName() getFileName},
52 * <p> In addition to accessing the components of a path, a {@code Path} also
53 * defines the {@link #resolve(Path) resolve} and {@link #resolveSibling(Path)
74 * Path path = FileSystems.getDefault().getPath("logs", "access.log");
84 * method may be used to obtain a {@code Path} from the abstract path name
85 * represented by a {@code java.io.File} object. The resulting {@code Path} ca
98 public interface Path interface in inherits:Comparable,Iterable,Watchable
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DShape.java88 class Path extends Shape { class in inherits:Shape
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DPaths.java93 pathsForLocation = new HashMap<Location,Path>(16);
107 private Map<Location, Path> pathsForLocation;
122 Path getPathForLocation(Location location) {
123 Path path = pathsForLocation.get(location);
132 Path p;
150 p = new Path();
184 Path p = getPathForLocation(SOURCE_PATH);
228 private class Path extends LinkedHashSet<File> { class in class:Paths
234 public Path expandJarClassPaths(boolean x) {
242 public Path emptyPathDefaul
247 public Path() { super(); } method in class:Paths.Path
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/
H A DBatchEnvironment.java91 * of the fix for 6473331, which adds support for Class-Path
93 * here directly, with the help of a Path utility class copied
96 Path path = new Path();
106 * Class-Path manifest entries are supported for JAR files
227 * the fix for 6473331, which adds support for Class-Path manifest
231 private static class Path extends LinkedHashSet<String> { class in class:BatchEnvironment
320 public Path expandJarClassPaths(boolean x) {
328 public Path emptyPathDefault(String x) {
333 public Path() { supe method in class:BatchEnvironment.Path
[all...]
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java87 ((ar = Path.tryparse(str)) != null) ||
198 testOps.add(new Path());
937 public static class Path extends AnnotatedShapeOp { class in class:RenderClipTest
938 public static Path tryparse(String str) {
940 if (!str.startsWith("Path(")) {
1027 return new Path(gp);
1032 public Path() { method in class:RenderClipTest.Path
1036 private Path(GeneralPath gp) { method in class:RenderClipTest.Path
1073 sb.append("Path(");

Completed in 204 milliseconds