|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object![]()
![]()
![]()
java.awt.KeyboardFocusManager
![]()
![]()
![]()
java.awt.DefaultKeyboardFocusManager
, KeyEventPostProcessor


public class DefaultKeyboardFocusManager

The default KeyboardFocusManager for AWT applications. Focus traversal is done in response to a Component's focus traversal keys, and using a Container's FocusTraversalPolicy.
Please see How to Use the Focus Subsystem, a section in The Java Tutorial, and the Focus Specification for more information.
FocusTraversalPolicy
,
Component.setFocusTraversalKeys(int, java.util.Set extends java.awt.AWTKeyStroke>)
,
Component.getFocusTraversalKeys(int)

| Field Summary |
|---|
Fields inherited from class java.awt.KeyboardFocusManager ![]() |
|---|
BACKWARD_TRAVERSAL_KEYS |
| Constructor Summary | |
|---|---|
DefaultKeyboardFocusManager
|
|
| Method Summary | |
|---|---|
protected void |
dequeueKeyEvents
Releases for normal dispatching to the current focus owner all KeyEvents which were enqueued because of a call to enqueueKeyEvents with the same timestamp and Component. |
protected void |
discardKeyEvents
Discards all KeyEvents which were enqueued because of one or more calls to enqueueKeyEvents with the specified Component, or one of
its descendants. |
boolean |
dispatchEvent
This method is called by the AWT event dispatcher requesting that the current KeyboardFocusManager dispatch the specified event on its behalf. |
boolean |
dispatchKeyEvent
Called by dispatchEvent if no other
KeyEventDispatcher in the dispatcher chain dispatched the KeyEvent, or
if no other KeyEventDispatchers are registered. |
void |
downFocusCycle
Moves the focus down one focus traversal cycle. |
protected void |
enqueueKeyEvents
Delays dispatching of KeyEvents until the specified Component becomes the focus owner. |
void |
focusNextComponent
Focuses the Component after aComponent, typically based on a FocusTraversalPolicy. |
void |
focusPreviousComponent
Focuses the Component before aComponent, typically based on a FocusTraversalPolicy. |
boolean |
postProcessKeyEvent
This method will be called by dispatchKeyEvent. |
void |
processKeyEvent
This method initiates a focus traversal operation if and only if the KeyEvent represents a focus traversal key for the specified focusedComponent. |
void |
upFocusCycle
Moves the focus up one focus traversal cycle. |
Methods inherited from class java.lang.Object ![]() |
|---|
clone |
| Constructor Detail |
|---|

public DefaultKeyboardFocusManager()
| Method Detail |
|---|

public boolean dispatchEvent(AWTEvent![]()
![]()
e)
false, then the AWT event
dispatcher will attempt to dispatch the event itself.
dispatchEvent

in class KeyboardFocusManager

e - the AWTEvent to be dispatched
true if this method dispatched the event;
false otherwiseKeyboardFocusManager.redispatchEvent(java.awt.Component, java.awt.AWTEvent)
,
KeyboardFocusManager.dispatchKeyEvent(java.awt.event.KeyEvent)


public boolean dispatchKeyEvent(KeyEvent![]()
![]()
e)
dispatchEvent if no other
KeyEventDispatcher in the dispatcher chain dispatched the KeyEvent, or
if no other KeyEventDispatchers are registered. If the event has not
been consumed, its target is enabled, and the focus owner is not null,
this method dispatches the event to its target. This method will also
subsequently dispatch the event to all registered
KeyEventPostProcessors. After all this operations are finished,
the event is passed to peers for processing.
In all cases, this method returns true, since
DefaultKeyboardFocusManager is designed so that neither
dispatchEvent, nor the AWT event dispatcher, should take
further action on the event in any situation.
dispatchKeyEvent

in interface KeyEventDispatcher

dispatchKeyEvent

in class KeyboardFocusManager

e - the KeyEvent to be dispatched
trueComponent.dispatchEvent(java.awt.AWTEvent)


public boolean postProcessKeyEvent(KeyEvent![]()
![]()
e)
dispatchKeyEvent. It will
handle any unconsumed KeyEvents that map to an AWT
MenuShortcut by consuming the event and activating the
shortcut.
postProcessKeyEvent

in interface KeyEventPostProcessor

postProcessKeyEvent

in class KeyboardFocusManager

e - the KeyEvent to post-process
truedispatchKeyEvent(java.awt.event.KeyEvent)
,
MenuShortcut


public void processKeyEvent(Component![]()
![]()
focusedComponent, KeyEvent
![]()
![]()
e)
processKeyEvent

in class KeyboardFocusManager

focusedComponent - the Component that is the basis for a focus
traversal operation if the specified event represents a focus
traversal key for the Componente - the event that may represent a focus traversal key

protected void enqueueKeyEvents(long after,
Component
untilFocused)
dequeueKeyEvents or discardKeyEvents.
enqueueKeyEvents

in class KeyboardFocusManager

after - timestamp of current event, or the current, system time if
the current event has no timestamp, or the AWT cannot determine
which event is currently being handleduntilFocused - Component which will receive a FOCUS_GAINED event
before any pending KeyEventsdequeueKeyEvents(long, java.awt.Component)
,
discardKeyEvents(java.awt.Component)


protected void dequeueKeyEvents(long after,
Component
untilFocused)
enqueueKeyEvents with the same timestamp and Component.
If the given timestamp is less than zero, the outstanding enqueue
request for the given Component with the oldest timestamp (if
any) should be cancelled.
dequeueKeyEvents

in class KeyboardFocusManager

after - the timestamp specified in the call to
enqueueKeyEvents, or any value < 0untilFocused - the Component specified in the call to
enqueueKeyEventsenqueueKeyEvents(long, java.awt.Component)
,
discardKeyEvents(java.awt.Component)


protected void discardKeyEvents(Component![]()
![]()
comp)
enqueueKeyEvents with the specified Component, or one of
its descendants.
discardKeyEvents

in class KeyboardFocusManager