< prev index next >

src/java.base/share/classes/java/nio/file/spi/FileSystemProvider.java

Print this page

        

@@ -917,12 +917,16 @@
      * <p> This method checks the existence of a file and that this Java virtual
      * machine has appropriate privileges that would allow it access the file
      * according to all of access modes specified in the {@code modes} parameter
      * as follows:
      *
-     * <table border=1 cellpadding=5 summary="">
+     * <table style="plain">
+     * <caption style="display:none">Access Modes</caption>
+     * <thead>
      * <tr> <th>Value</th> <th>Description</th> </tr>
+     * </thead>
+     * <tbody>
      * <tr>
      *   <td> {@link AccessMode#READ READ} </td>
      *   <td> Checks that the file exists and that the Java virtual machine has
      *     permission to read the file. </td>
      * </tr>

@@ -938,10 +942,11 @@
      *     may differ when checking access to a directory. For example, on UNIX
      *     systems, checking for {@code EXECUTE} access checks that the Java
      *     virtual machine has permission to search the directory in order to
      *     access file or subdirectories. </td>
      * </tr>
+     * </tbody>
      * </table>
      *
      * <p> If the {@code modes} parameter is of length zero, then the existence
      * of the file is checked.
      *
< prev index next >