jdk/src/share/classes/java/nio/file/spi/FileSystemProvider.java
changeset 3065 452aaa2899fc
parent 2057 3acf8e5e2ca0
child 5506 202f599c92aa
--- a/jdk/src/share/classes/java/nio/file/spi/FileSystemProvider.java	Fri Jun 26 18:39:45 2009 -0700
+++ b/jdk/src/share/classes/java/nio/file/spi/FileSystemProvider.java	Sat Jun 27 21:46:53 2009 +0100
@@ -270,7 +270,9 @@
     public abstract FileSystem getFileSystem(URI uri);
 
     /**
-     * Return a {@code Path} object by converting the given {@link URI}.
+     * Return a {@code Path} object by converting the given {@link URI}. The
+     * resulting {@code Path} is associated with a {@link FileSystem} that
+     * already exists or is constructed automatically.
      *
      * <p> The exact form of the URI is file system provider dependent. In the
      * case of the default provider, the URI scheme is {@code "file"} and the
@@ -290,7 +292,8 @@
      *          If the URI scheme does not identify this provider or other
      *          preconditions on the uri parameter do not hold
      * @throws  FileSystemNotFoundException
-     *          The file system, identified by the URI, does not exist
+     *          The file system, identified by the URI, does not exist and
+     *          cannot be created automatically
      * @throws  SecurityException
      *          If a security manager is installed and it denies an unspecified
      *          permission.