InternalFrameEvent (Java SE 15 & JDK 15) (original) (raw)
All Implemented Interfaces:
[Serializable](../../../../java.base/java/io/Serializable.html "interface in java.io")
public class InternalFrameEvent extends AWTEvent
An AWTEvent
that adds support forJInternalFrame
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 inHow 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:
WindowEvent, WindowListener, JInternalFrame, InternalFrameListener
Field Summary
Fields
Modifier and Type | Field | Description |
---|---|---|
static int | INTERNAL_FRAME_ACTIVATED | The "window activated" event type. |
static int | INTERNAL_FRAME_CLOSED | The "window closed" event. |
static int | INTERNAL_FRAME_CLOSING | The "window is closing" event. |
static int | INTERNAL_FRAME_DEACTIVATED | The "window deactivated" event type. |
static int | INTERNAL_FRAME_DEICONIFIED | The "window deiconified" event type. |
static int | INTERNAL_FRAME_FIRST | The first number in the range of IDs used for internal frame events. |
static int | INTERNAL_FRAME_ICONIFIED | The "window iconified" event. |
static int | INTERNAL_FRAME_LAST | The last number in the range of IDs used for internal frame events. |
static int | INTERNAL_FRAME_OPENED | The "window opened" event. |
Fields declared in class java.awt.AWTEvent
[ACTION_EVENT_MASK](../../../java/awt/AWTEvent.html#ACTION%5FEVENT%5FMASK), [ADJUSTMENT_EVENT_MASK](../../../java/awt/AWTEvent.html#ADJUSTMENT%5FEVENT%5FMASK), [COMPONENT_EVENT_MASK](../../../java/awt/AWTEvent.html#COMPONENT%5FEVENT%5FMASK), [consumed](../../../java/awt/AWTEvent.html#consumed), [CONTAINER_EVENT_MASK](../../../java/awt/AWTEvent.html#CONTAINER%5FEVENT%5FMASK), [FOCUS_EVENT_MASK](../../../java/awt/AWTEvent.html#FOCUS%5FEVENT%5FMASK), [HIERARCHY_BOUNDS_EVENT_MASK](../../../java/awt/AWTEvent.html#HIERARCHY%5FBOUNDS%5FEVENT%5FMASK), [HIERARCHY_EVENT_MASK](../../../java/awt/AWTEvent.html#HIERARCHY%5FEVENT%5FMASK), [id](../../../java/awt/AWTEvent.html#id), [INPUT_METHOD_EVENT_MASK](../../../java/awt/AWTEvent.html#INPUT%5FMETHOD%5FEVENT%5FMASK), [INVOCATION_EVENT_MASK](../../../java/awt/AWTEvent.html#INVOCATION%5FEVENT%5FMASK), [ITEM_EVENT_MASK](../../../java/awt/AWTEvent.html#ITEM%5FEVENT%5FMASK), [KEY_EVENT_MASK](../../../java/awt/AWTEvent.html#KEY%5FEVENT%5FMASK), [MOUSE_EVENT_MASK](../../../java/awt/AWTEvent.html#MOUSE%5FEVENT%5FMASK), [MOUSE_MOTION_EVENT_MASK](../../../java/awt/AWTEvent.html#MOUSE%5FMOTION%5FEVENT%5FMASK), [MOUSE_WHEEL_EVENT_MASK](../../../java/awt/AWTEvent.html#MOUSE%5FWHEEL%5FEVENT%5FMASK), [PAINT_EVENT_MASK](../../../java/awt/AWTEvent.html#PAINT%5FEVENT%5FMASK), [RESERVED_ID_MAX](../../../java/awt/AWTEvent.html#RESERVED%5FID%5FMAX), [TEXT_EVENT_MASK](../../../java/awt/AWTEvent.html#TEXT%5FEVENT%5FMASK), [WINDOW_EVENT_MASK](../../../java/awt/AWTEvent.html#WINDOW%5FEVENT%5FMASK), [WINDOW_FOCUS_EVENT_MASK](../../../java/awt/AWTEvent.html#WINDOW%5FFOCUS%5FEVENT%5FMASK), [WINDOW_STATE_EVENT_MASK](../../../java/awt/AWTEvent.html#WINDOW%5FSTATE%5FEVENT%5FMASK)
Constructor Summary
Constructors
Constructor | Description |
---|---|
InternalFrameEvent​(JInternalFrame source, int id) | Constructs an InternalFrameEvent object. |
Method Summary
Modifier and Type | Method | Description |
---|---|---|
JInternalFrame | getInternalFrame() | Returns the originator of the event. |
String | paramString() | Returns a parameter string identifying this event. |
Field Details
INTERNAL_FRAME_FIRST
public static final int INTERNAL_FRAME_FIRST
The first number in the range of IDs used for internal frame events.
See Also:
Constant Field ValuesINTERNAL_FRAME_LAST
public static final int INTERNAL_FRAME_LAST
The last number in the range of IDs used for internal frame events.
See Also:
Constant Field ValuesINTERNAL_FRAME_OPENED
public static final int INTERNAL_FRAME_OPENED
The "window opened" event. This event is delivered only the first time the internal frame is made visible.
See Also:
JInternalFrame.show(), Constant Field ValuesINTERNAL_FRAME_CLOSING
public static final int INTERNAL_FRAME_CLOSING
The "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:
JInternalFrame.setDefaultCloseOperation(int), JInternalFrame.doDefaultCloseAction(), JInternalFrame.setClosed(boolean), Constant Field ValuesINTERNAL_FRAME_CLOSED
public static final int INTERNAL_FRAME_CLOSED
The "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:
JInternalFrame.setClosed(boolean), JInternalFrame.dispose(), Constant Field ValuesINTERNAL_FRAME_ICONIFIED
public static final int INTERNAL_FRAME_ICONIFIED
The "window iconified" event. This event indicates that the internal frame was shrunk down to a small icon.
See Also:
JInternalFrame.setIcon(boolean), Constant Field ValuesINTERNAL_FRAME_DEICONIFIED
public static final int INTERNAL_FRAME_DEICONIFIED
The "window deiconified" event type. This event indicates that the internal frame has been restored to its normal size.
See Also:
JInternalFrame.setIcon(boolean), Constant Field ValuesINTERNAL_FRAME_ACTIVATED
public static final int INTERNAL_FRAME_ACTIVATED
The "window activated" event type. This event indicates that keystrokes and mouse clicks are directed towards this internal frame.
See Also:
JInternalFrame.show(), JInternalFrame.setSelected(boolean), Constant Field ValuesINTERNAL_FRAME_DEACTIVATED
public static final int INTERNAL_FRAME_DEACTIVATED
The "window deactivated" event type. This event indicates that keystrokes and mouse clicks are no longer directed to the internal frame.
See Also:
JInternalFrame.setSelected(boolean), Constant Field ValuesConstructor Details
InternalFrameEvent
public InternalFrameEvent​(JInternalFrame source, int id)
Constructs anInternalFrameEvent
object.
Parameters:
source
- theJInternalFrame
object that originated the event
id
- an integer indicating the type of eventMethod Details
paramString
public String paramString()
Returns a parameter string identifying this event. This method is useful for event logging and for debugging.
Overrides:
[paramString](../../../java/awt/AWTEvent.html#paramString%28%29)
in class[AWTEvent](../../../java/awt/AWTEvent.html "class in java.awt")
Returns:
a string identifying the event and its attributesgetInternalFrame
Returns the originator of the event.
Returns:
theJInternalFrame
object that originated the event
Since:
1.3