< prev index next >

src/java.desktop/share/classes/java/awt/Component.java

Print this page

        

@@ -7235,16 +7235,21 @@
      * implementation-dependent. Sun recommends that all implementations for a
      * particular native platform use the same default values. The
      * recommendations for Windows and Unix are listed below. These
      * recommendations are used in the Sun AWT implementations.
      *
-     * <table border=1 summary="Recommended default values for a Component's focus traversal keys">
+     * <table class="striped">
+     * <caption style="display:none">Recommended default values for a
+     * Component's focus traversal keys</caption>
+     * <thead>
      * <tr>
      *    <th>Identifier</th>
      *    <th>Meaning</th>
      *    <th>Default</th>
      * </tr>
+     * </thead>
+     * <tbody>
      * <tr>
      *    <td>KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS</td>
      *    <td>Normal forward keyboard traversal</td>
      *    <td>TAB on KEY_PRESSED, CTRL-TAB on KEY_PRESSED</td>
      * </tr>

@@ -7256,10 +7261,11 @@
      * <tr>
      *    <td>KeyboardFocusManager.UP_CYCLE_TRAVERSAL_KEYS</td>
      *    <td>Go up one focus traversal cycle</td>
      *    <td>none</td>
      * </tr>
+     * </tbody>
      * </table>
      *
      * To disable a traversal key, use an empty Set; Collections.EMPTY_SET is
      * recommended.
      * <p>
< prev index next >