In documentation for KeyboardFocusManager class, for method setDefaultFocusTraversalKeys() there is a table which lists out the default traversal keys available for different platforms.
The last row of this Table is displaced by one cell, hence the values given is not coming under proper subheading. This can be fixed easily by removing a cell from the last row
I'm referring to the docs at /usr/local/java/jdk1.4/doc/api/index.html
Please follow the link given below to reach the table easily
file:/usr/local/java/jdk1.4/doc/api/java/awt/KeyboardFocusManager.html#setDefaultFocusTraversalKeys(int, java.util.Set)
The <td> tag is not closed using </td> hence the problem
* <tr>
* <td>KeyboardFocusManager.DOWN_CYCLE_TRAVERSAL_KEYS<td>
* <td>Go down one focus traversal cycle</td>
* <td>none</td>
* </tr>
The last row of this Table is displaced by one cell, hence the values given is not coming under proper subheading. This can be fixed easily by removing a cell from the last row
I'm referring to the docs at /usr/local/java/jdk1.4/doc/api/index.html
Please follow the link given below to reach the table easily
file:/usr/local/java/jdk1.4/doc/api/java/awt/KeyboardFocusManager.html#setDefaultFocusTraversalKeys(int, java.util.Set)
The <td> tag is not closed using </td> hence the problem
* <tr>
* <td>KeyboardFocusManager.DOWN_CYCLE_TRAVERSAL_KEYS<td>
* <td>Go down one focus traversal cycle</td>
* <td>none</td>
* </tr>