< prev index next >

src/java.base/share/classes/java/nio/file/FileSystem.java

Print this page

        

@@ -313,11 +313,13 @@
      * <p> When the syntax is "{@code glob}" then the {@code String}
      * representation of the path is matched using a limited pattern language
      * that resembles regular expressions but with a simpler syntax. For example:
      *
      * <blockquote>
-     * <table border="0" summary="Pattern Language">
+     * <table>
+     * <caption style="display:none">Pattern Language</caption>
+     * <tbody>
      * <tr>
      *   <td>{@code *.java}</td>
      *   <td>Matches a path that represents a file name ending in {@code .java}</td>
      * </tr>
      * <tr>

@@ -346,11 +348,11 @@
      *   <td><code>C:\\*</code>
      *   <td>Matches <code>C:\foo</code> and <code>C:\bar</code> on the Windows
      *   platform (note that the backslash is escaped; as a string literal in the
      *   Java Language the pattern would be <code>"C:\\\\*"</code>) </td>
      * </tr>
-     *
+     * </tbody>
      * </table>
      * </blockquote>
      *
      * <p> The following rules are used to interpret glob patterns:
      *
< prev index next >