< prev index next >

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

Print this page

        

*** 1041,1078 **** * * <table class="striped"> * <caption>Recommended default values for focus traversal keys</caption> * <thead> * <tr> ! * <th>Identifier</th> ! * <th>Meaning</th> ! * <th>Default</th> ! * </tr> * </thead> * <tbody> * <tr> ! * <td>{@code KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS}</td> ! * <td>Normal forward keyboard traversal</td> ! * <td>{@code TAB} on {@code KEY_PRESSED}, ! * {@code CTRL-TAB} on {@code KEY_PRESSED}</td> ! * </tr> * <tr> ! * <td>{@code KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS}</td> ! * <td>Normal reverse keyboard traversal</td> ! * <td>{@code SHIFT-TAB} on {@code KEY_PRESSED}, ! * {@code CTRL-SHIFT-TAB} on {@code KEY_PRESSED}</td> ! * </tr> * <tr> ! * <td>{@code KeyboardFocusManager.UP_CYCLE_TRAVERSAL_KEYS}</td> ! * <td>Go up one focus traversal cycle</td> ! * <td>none</td> ! * </tr> * <tr> ! * <td>{@code KeyboardFocusManager.DOWN_CYCLE_TRAVERSAL_KEYS}</td> ! * <td>Go down one focus traversal cycle</td> ! * <td>none</td> ! * </tr> * </tbody> * </table> * * To disable a traversal key, use an empty {@code Set}; * {@code Collections.EMPTY_SET} is recommended. --- 1041,1073 ---- * * <table class="striped"> * <caption>Recommended default values for focus traversal keys</caption> * <thead> * <tr> ! * <th scope="col">Identifier ! * <th scope="col">Meaning ! * <th scope="col">Default * </thead> * <tbody> * <tr> ! * <th scope="row">{@code KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS} ! * <td>Normal forward keyboard traversal ! * <td>{@code TAB} on {@code KEY_PRESSED}, {@code CTRL-TAB} on ! * {@code KEY_PRESSED} * <tr> ! * <th scope="row">{@code KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS} ! * <td>Normal reverse keyboard traversal ! * <td>{@code SHIFT-TAB} on {@code KEY_PRESSED}, {@code CTRL-SHIFT-TAB} ! * on {@code KEY_PRESSED} * <tr> ! * <th scope="row">{@code KeyboardFocusManager.UP_CYCLE_TRAVERSAL_KEYS} ! * <td>Go up one focus traversal cycle ! * <td>none * <tr> ! * <th scope="row">{@code KeyboardFocusManager.DOWN_CYCLE_TRAVERSAL_KEYS} ! * <td>Go down one focus traversal cycle ! * <td>none * </tbody> * </table> * * To disable a traversal key, use an empty {@code Set}; * {@code Collections.EMPTY_SET} is recommended.
< prev index next >