Class FocusEvent
- All Implemented Interfaces:
Serializable
FocusListener or
FocusAdapter object which registered to receive such events
using the Component's addFocusListener method.
(FocusAdapter objects implement the FocusListener
interface.) Each such listener object gets this FocusEvent when
the event occurs.
There are two levels of focus events: permanent and temporary. Permanent focus change events occur when focus is directly moved from one Component to another, such as through a call to requestFocus() or as the user uses the TAB key to traverse Components. Temporary focus change events occur when focus is temporarily lost for a Component as the indirect result of another operation, such as Window deactivation or a Scrollbar drag. In this case, the original focus state will automatically be restored once that operation is finished, or, for the case of Window deactivation, when the Window is reactivated. Both permanent and temporary focus events are delivered using the FOCUS_GAINED and FOCUS_LOST event ids; the level may be distinguished in the event using the isTemporary() method.
Every FocusEvent records its cause - the reason why this event was
generated. The cause is assigned during the focus event creation and may be
retrieved by calling getCause().
An unspecified behavior will be caused if the id parameter
of any particular FocusEvent instance is not
in the range from FOCUS_FIRST to FOCUS_LAST.
- Since:
- 1.1
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumThis enum represents the cause of aFocusEvent- the reason why it occurred. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe first number in the range of ids used for focus events.static final intThis event indicates that the Component is now the focus owner.static final intThe last number in the range of ids used for focus events.static final intThis event indicates that the Component is no longer the focus owner.Fields declared in class ComponentEvent
COMPONENT_FIRST, COMPONENT_HIDDEN, COMPONENT_LAST, COMPONENT_MOVED, COMPONENT_RESIZED, COMPONENT_SHOWNModifier and TypeFieldDescriptionstatic final intThe first number in the range of ids used for component events.static final intThis event indicates that the component was rendered invisible.static final intThe last number in the range of ids used for component events.static final intThis event indicates that the component's position changed.static final intThis event indicates that the component's size changed.static final intThis event indicates that the component was made visible.Fields declared in class AWTEvent
ACTION_EVENT_MASK, ADJUSTMENT_EVENT_MASK, COMPONENT_EVENT_MASK, consumed, CONTAINER_EVENT_MASK, FOCUS_EVENT_MASK, HIERARCHY_BOUNDS_EVENT_MASK, HIERARCHY_EVENT_MASK, id, INPUT_METHOD_EVENT_MASK, INVOCATION_EVENT_MASK, ITEM_EVENT_MASK, KEY_EVENT_MASK, MOUSE_EVENT_MASK, MOUSE_MOTION_EVENT_MASK, MOUSE_WHEEL_EVENT_MASK, PAINT_EVENT_MASK, RESERVED_ID_MAX, TEXT_EVENT_MASK, WINDOW_EVENT_MASK, WINDOW_FOCUS_EVENT_MASK, WINDOW_STATE_EVENT_MASKModifier and TypeFieldDescriptionstatic final longThe event mask for selecting action events.static final longThe event mask for selecting adjustment events.static final longThe event mask for selecting component events.protected booleanControls whether or not the event is sent back down to the peer once the source has processed it - false means it's sent to the peer; true means it's not.static final longThe event mask for selecting container events.static final longThe event mask for selecting focus events.static final longThe event mask for selecting hierarchy bounds events.static final longThe event mask for selecting hierarchy events.protected intThe event's id.static final longThe event mask for selecting input method events.static final longThe event mask for selecting invocation events.static final longThe event mask for selecting item events.static final longThe event mask for selecting key events.static final longThe event mask for selecting mouse events.static final longThe event mask for selecting mouse motion events.static final longThe event mask for selecting mouse wheel events.static final longThe event mask for selecting paint events.static final intThe maximum value for reserved AWT event IDs.static final longThe event mask for selecting text events.static final longThe event mask for selecting window events.static final longThe event mask for selecting window focus events.static final longThe event mask for selecting window state events.Fields declared in class EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionFocusEvent(Component source, int id) Constructs aFocusEventobject and identifies it as a permanent change in focus.FocusEvent(Component source, int id, boolean temporary) Constructs aFocusEventobject and identifies whether or not the change is temporary.FocusEvent(Component source, int id, boolean temporary, Component opposite) Constructs aFocusEventobject with the specified temporary state, oppositeComponentand theCause.UNKNOWNcause.FocusEvent(Component source, int id, boolean temporary, Component opposite, FocusEvent.Cause cause) Constructs aFocusEventobject with the specified temporary state, oppositeComponentand the cause. -
Method Summary
Modifier and TypeMethodDescriptionfinal FocusEvent.CausegetCause()Returns the event cause.Returns the other Component involved in this focus change.booleanIdentifies the focus change event as temporary or permanent.Returns a parameter string identifying this event.Methods declared in class ComponentEvent
getComponentMethods declared in class AWTEvent
consume, getID, isConsumed, setSource, toStringModifier and TypeMethodDescriptionprotected voidconsume()Consumes this event, if this event can be consumed.intgetID()Returns the event type.protected booleanReturns whether this event has been consumed.voidRetargets an event to a new source.toString()Returns a String representation of this object.Methods declared in class EventObject
getSourceMethods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
FOCUS_FIRST
public static final int FOCUS_FIRSTThe first number in the range of ids used for focus events.- See Also:
-
FOCUS_LAST
public static final int FOCUS_LASTThe last number in the range of ids used for focus events.- See Also:
-
FOCUS_GAINED
public static final int FOCUS_GAINEDThis event indicates that the Component is now the focus owner.- See Also:
-
FOCUS_LOST
public static final int FOCUS_LOSTThis event indicates that the Component is no longer the focus owner.- See Also:
-
-
Constructor Details
-
FocusEvent
Constructs aFocusEventobject with the specified temporary state, oppositeComponentand theCause.UNKNOWNcause. The oppositeComponentis the otherComponentinvolved in this focus change. For aFOCUS_GAINEDevent, this is theComponentthat lost focus. For aFOCUS_LOSTevent, this is theComponentthat gained focus. If this focus change occurs with a native application, with a Java application in a different VM, or with no otherComponent, then the oppositeComponentisnull.This method throws an
IllegalArgumentExceptionifsourceisnull.- Parameters:
source- TheComponentthat originated the eventid- An integer indicating the type of event. For information on allowable values, see the class description forFocusEventtemporary- Equalstrueif the focus change is temporary;falseotherwiseopposite- The other Component involved in the focus change, ornull- Throws:
IllegalArgumentException- ifsourceequalsnull- Since:
- 1.4
- See Also:
-
FocusEvent
public FocusEvent(Component source, int id, boolean temporary, Component opposite, FocusEvent.Cause cause) Constructs aFocusEventobject with the specified temporary state, oppositeComponentand the cause. The oppositeComponentis the otherComponentinvolved in this focus change. For aFOCUS_GAINEDevent, this is theComponentthat lost focus. For aFOCUS_LOSTevent, this is theComponentthat gained focus. If this focus change occurs with a native application, with a Java application in a different VM, or with no otherComponent, then the oppositeComponentisnull.This method throws an
IllegalArgumentExceptionifsourceorcauseisnull.- Parameters:
source- TheComponentthat originated the eventid- An integer indicating the type of event. For information on allowable values, see the class description forFocusEventtemporary- Equalstrueif the focus change is temporary;falseotherwiseopposite- The other Component involved in the focus change, ornullcause- The focus event cause.- Throws:
IllegalArgumentException- ifsourceequalsnullor ifcauseequalsnull- Since:
- 9
- See Also:
-
FocusEvent
Constructs aFocusEventobject and identifies whether or not the change is temporary.This method throws an
IllegalArgumentExceptionifsourceisnull.- Parameters:
source- TheComponentthat originated the eventid- An integer indicating the type of event. For information on allowable values, see the class description forFocusEventtemporary- Equalstrueif the focus change is temporary;falseotherwise- Throws:
IllegalArgumentException- ifsourceequalsnull- See Also:
-
FocusEvent
Constructs aFocusEventobject and identifies it as a permanent change in focus.This method throws an
IllegalArgumentExceptionifsourceisnull.- Parameters:
source- TheComponentthat originated the eventid- An integer indicating the type of event. For information on allowable values, see the class description forFocusEvent- Throws:
IllegalArgumentException- ifsourceequalsnull- See Also:
-
-
Method Details
-
isTemporary
public boolean isTemporary()Identifies the focus change event as temporary or permanent.- Returns:
trueif the focus change is temporary;falseotherwise
-
getOppositeComponent
Returns the other Component involved in this focus change. For a FOCUS_GAINED event, this is the Component that lost focus. For a FOCUS_LOST event, this is the Component that gained focus. If this focus change occurs with a native application, with a Java application in a different VM or context, or with no other Component, then null is returned.- Returns:
- the other Component involved in the focus change, or null
- Since:
- 1.4
-
paramString
Returns a parameter string identifying this event. This method is useful for event-logging and for debugging.- Overrides:
paramStringin classComponentEvent- Returns:
- a string identifying the event and its attributes
-
getCause
Returns the event cause.- Returns:
- one of
FocusEvent.Causevalues - Since:
- 9
-