< prev index next >

jdk/src/jdk.zipfs/share/classes/module-info.java

Print this page

        

*** 22,33 **** * or visit www.oracle.com if you need additional information or have any * questions. */ /** ! * Zip file system provider. * * @moduleGraph * @since 9 */ module jdk.zipfs { provides java.nio.file.spi.FileSystemProvider with jdk.nio.zipfs.ZipFileSystemProvider; --- 22,40 ---- * or visit www.oracle.com if you need additional information or have any * questions. */ /** ! * Provides the implementation of the zip file system provider. * + * <p> The zip file system provider treats a zip or JAR file as a file system + * and the ability to manipulate the contents of the file. + * The zip file system provider can be located via + * {@link java.nio.file.spi.FileSystemProvider#installedProviders + * FileSystemProvider.installedProviders()} if installed. + * + * @provides java.nio.file.spi.FileSystemProvider * @moduleGraph * @since 9 */ module jdk.zipfs { provides java.nio.file.spi.FileSystemProvider with jdk.nio.zipfs.ZipFileSystemProvider;
< prev index next >