Class InternalFrameEvent
java.lang.Object
java.util.EventObject
java.awt.AWTEvent
javax.swing.event.InternalFrameEvent
- All Implemented Interfaces:
Serializable
An
AWTEvent
that adds support for
JInternalFrame
objects as the event source. This class has the
same event types as WindowEvent
,
although different IDs are used.
Help on handling internal frame events
is in
How to Write an Internal Frame Listener,
a section in The Java Tutorial.
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
.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
The "window activated" event type.static final int
The "window closed" event.static final int
The "window is closing" event.static final int
The "window deactivated" event type.static final int
The "window deiconified" event type.static final int
The first number in the range of IDs used for internal frame events.static final int
The "window iconified" event.static final int
The last number in the range of IDs used for internal frame events.static final int
The "window opened" event.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_MASK
Modifier and TypeFieldDescriptionstatic final long
The event mask for selecting action events.static final long
The event mask for selecting adjustment events.static final long
The event mask for selecting component events.protected boolean
Controls 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 long
The event mask for selecting container events.static final long
The event mask for selecting focus events.static final long
The event mask for selecting hierarchy bounds events.static final long
The event mask for selecting hierarchy events.protected int
The event's id.static final long
The event mask for selecting input method events.static final long
The event mask for selecting invocation events.static final long
The event mask for selecting item events.static final long
The event mask for selecting key events.static final long
The event mask for selecting mouse events.static final long
The event mask for selecting mouse motion events.static final long
The event mask for selecting mouse wheel events.static final long
The event mask for selecting paint events.static final int
The maximum value for reserved AWT event IDs.static final long
The event mask for selecting text events.static final long
The event mask for selecting window events.static final long
The event mask for selecting window focus events.static final long
The event mask for selecting window state events.Fields declared in class EventObject
source
-
Constructor Summary
ConstructorsConstructorDescriptionInternalFrameEvent
(JInternalFrame source, int id) Constructs anInternalFrameEvent
object. -
Method Summary
Modifier and TypeMethodDescriptionReturns the originator of the event.Returns a parameter string identifying this event.Methods declared in class AWTEvent
consume, getID, isConsumed, setSource, toString
Modifier and TypeMethodDescriptionprotected void
consume()
Consumes this event, if this event can be consumed.int
getID()
Returns the event type.protected boolean
Returns whether this event has been consumed.void
Retargets an event to a new source.toString()
Returns a String representation of this object.Methods declared in class EventObject
getSource
Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
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
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(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 void
wait
(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
-
INTERNAL_FRAME_FIRST
public static final int INTERNAL_FRAME_FIRSTThe first number in the range of IDs used for internal frame events.- See Also:
-
INTERNAL_FRAME_LAST
public static final int INTERNAL_FRAME_LASTThe last number in the range of IDs used for internal frame events.- See Also:
-
INTERNAL_FRAME_OPENED
public static final int INTERNAL_FRAME_OPENEDThe "window opened" event. This event is delivered only the first time the internal frame is made visible.- See Also:
-
INTERNAL_FRAME_CLOSING
public static final int INTERNAL_FRAME_CLOSINGThe "window is closing" event. This event is delivered when the user attempts to close the internal frame, such as by clicking the internal frame's close button, or when a program attempts to close the internal frame by invoking thesetClosed
method.- See Also:
-
INTERNAL_FRAME_CLOSED
public static final int INTERNAL_FRAME_CLOSEDThe "window closed" event. This event is delivered after the internal frame has been closed as the result of a call to thesetClosed
ordispose
method.- See Also:
-
INTERNAL_FRAME_ICONIFIED
public static final int INTERNAL_FRAME_ICONIFIEDThe "window iconified" event. This event indicates that the internal frame was shrunk down to a small icon.- See Also:
-
INTERNAL_FRAME_DEICONIFIED
public static final int INTERNAL_FRAME_DEICONIFIEDThe "window deiconified" event type. This event indicates that the internal frame has been restored to its normal size.- See Also:
-
INTERNAL_FRAME_ACTIVATED
public static final int INTERNAL_FRAME_ACTIVATEDThe "window activated" event type. This event indicates that keystrokes and mouse clicks are directed towards this internal frame.- See Also:
-
INTERNAL_FRAME_DEACTIVATED
public static final int INTERNAL_FRAME_DEACTIVATEDThe "window deactivated" event type. This event indicates that keystrokes and mouse clicks are no longer directed to the internal frame.- See Also:
-
-
Constructor Details
-
InternalFrameEvent
Constructs anInternalFrameEvent
object.- Parameters:
source
- theJInternalFrame
object that originated the eventid
- an integer indicating the type of event
-
-
Method Details
-
paramString
Returns a parameter string identifying this event. This method is useful for event logging and for debugging.- Overrides:
paramString
in classAWTEvent
- Returns:
- a string identifying the event and its attributes
-
getInternalFrame
Returns the originator of the event.- Returns:
- the
JInternalFrame
object that originated the event - Since:
- 1.3
-