public class javax.swing.event
InternalFrameEvent


Show All Login
Java SE 6
  
Extends: EventObject > AWTEvent
Details
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 JavaBeansTM has been added to the java.beans package. Please see java.beans.XMLEncoder.
version1.17 11/17/05
See also java.awt.event.WindowEvent, java.awt.event.WindowListener, javax.swing.JInternalFrame, javax.swing.event.InternalFrameListener


Fields
final public static int INTERNAL_FRAME_FIRST
The first number in the range of IDs used for internal frame events.
final public static int INTERNAL_FRAME_LAST
The last number in the range of IDs used for internal frame events.
final public static int INTERNAL_FRAME_OPENED Details
The "window opened" event. This event is delivered only the first time the internal frame is made visible.
See also show
final public static int INTERNAL_FRAME_CLOSING Details
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 the setClosed method.
See also setDefaultCloseOperation, doDefaultCloseAction, setClosed
final public static int INTERNAL_FRAME_CLOSED Details
The "window closed" event. This event is delivered after the internal frame has been closed as the result of a call to the setClosed or dispose method.
See also setClosed, dispose
final public static int INTERNAL_FRAME_ICONIFIED Details
The "window iconified" event. This event indicates that the internal frame was shrunk down to a small icon.
See also setIcon
final public static int INTERNAL_FRAME_DEICONIFIED Details
The "window deiconified" event type. This event indicates that the internal frame has been restored to its normal size.
See also setIcon
final public static int INTERNAL_FRAME_ACTIVATED Details
The "window activated" event type. This event indicates that keystrokes and mouse clicks are directed towards this internal frame.
See also show, setSelected
final public static int INTERNAL_FRAME_DEACTIVATED Details
The "window deactivated" event type. This event indicates that keystrokes and mouse clicks are no longer directed to the internal frame.
See also setSelected

Constructors
public InternalFrameEvent(JInternalFrame source, int id) Details
Constructs an InternalFrameEvent object.
sourcethe JInternalFrame object that originated the event
idan integer indicating the type of event

Methods
public String paramString() Details
Returns a parameter string identifying this event. This method is useful for event logging and for debugging.
returna string identifying the event and its attributes

Properties
public JInternalFrame getInternalFrame() Details
Returns the originator of the event.
returnthe JInternalFrame object that originated the event
since1.3