Class AncestorEvent
java.lang.Object
java.util.EventObject
java.awt.AWTEvent
javax.swing.event.AncestorEvent
- All Implemented Interfaces:
Serializable
An event reported to a child component that originated from an
ancestor in the component hierarchy.
Warning:
Serialized objects of this class will not be compatible with
future Swing releases. The current serialization support is
appropriate for short term storage or RMI between applications running
the same version of Swing. As of 1.4, support for long term storage
of all JavaBeans
has been added to the java.beans package.
Please see XMLEncoder.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intAn ancestor-component was added to the hierarchy of visible objects (made visible), and is currently being displayed.static final intAn ancestor-component changed its position on the screen.static final intAn ancestor-component was removed from the hierarchy of visible objects (hidden) and is no longer being displayed.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
ConstructorsConstructorDescriptionAncestorEvent(JComponent source, int id, Container ancestor, Container ancestorParent) Constructs an AncestorEvent object to identify a change in an ancestor-component's display-status. -
Method Summary
Modifier and TypeMethodDescriptionReturns the ancestor that the event actually occurred on.Returns the parent of the ancestor the event actually occurred on.Returns the component that the listener was added to.Methods declared in class AWTEvent
consume, getID, isConsumed, paramString, 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.Returns a string representing the state of thisEvent.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
-
ANCESTOR_ADDED
public static final int ANCESTOR_ADDEDAn ancestor-component was added to the hierarchy of visible objects (made visible), and is currently being displayed.- See Also:
-
ANCESTOR_REMOVED
public static final int ANCESTOR_REMOVEDAn ancestor-component was removed from the hierarchy of visible objects (hidden) and is no longer being displayed.- See Also:
-
ANCESTOR_MOVED
public static final int ANCESTOR_MOVEDAn ancestor-component changed its position on the screen.- See Also:
-
-
Constructor Details
-
AncestorEvent
Constructs an AncestorEvent object to identify a change in an ancestor-component's display-status.- Parameters:
source- the JComponent that originated the event (typicallythis)id- an int specifyingANCESTOR_ADDED,ANCESTOR_REMOVEDorANCESTOR_MOVEDancestor- a Container object specifying the ancestor-component whose display-status changedancestorParent- a Container object specifying the ancestor's parent
-
-
Method Details
-
getAncestor
Returns the ancestor that the event actually occurred on.- Returns:
- the
Containerobject specifying the ancestor component
-
getAncestorParent
Returns the parent of the ancestor the event actually occurred on. This is most interesting in an ANCESTOR_REMOVED event, as the ancestor may no longer be in the component hierarchy.- Returns:
- the
Containerobject specifying the ancestor's parent
-
getComponent
Returns the component that the listener was added to.- Returns:
- the
JComponenton which the event occurred
-