- java.lang.Object
- 
- java.util.EventObject
- 
- java.awt.AWTEvent
- 
- javax.swing.event.InternalFrameEvent
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 
 public class InternalFrameEvent extends AWTEvent AnAWTEventthat adds support forJInternalFrameobjects as the event source. This class has the same event types asWindowEvent, 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.beanspackage. Please seeXMLEncoder.
- 
- 
Field SummaryFields Modifier and Type Field Description static intINTERNAL_FRAME_ACTIVATEDThe "window activated" event type.static intINTERNAL_FRAME_CLOSEDThe "window closed" event.static intINTERNAL_FRAME_CLOSINGThe "window is closing" event.static intINTERNAL_FRAME_DEACTIVATEDThe "window deactivated" event type.static intINTERNAL_FRAME_DEICONIFIEDThe "window deiconified" event type.static intINTERNAL_FRAME_FIRSTThe first number in the range of IDs used for internal frame events.static intINTERNAL_FRAME_ICONIFIEDThe "window iconified" event.static intINTERNAL_FRAME_LASTThe last number in the range of IDs used for internal frame events.static intINTERNAL_FRAME_OPENEDThe "window opened" event.- 
Fields inherited from class java.awt.AWTEventACTION_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
 - 
Fields inherited from class java.util.EventObjectsource
 
- 
 - 
Constructor SummaryConstructors Constructor Description InternalFrameEvent(JInternalFrame source, int id)Constructs anInternalFrameEventobject.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description JInternalFramegetInternalFrame()Returns the originator of the event.StringparamString()Returns a parameter string identifying this event.- 
Methods inherited from class java.util.EventObjectgetSource
 
- 
 
- 
- 
- 
Field Detail- 
INTERNAL_FRAME_FIRSTpublic static final int INTERNAL_FRAME_FIRST The first number in the range of IDs used for internal frame events.- See Also:
- Constant Field Values
 
 - 
INTERNAL_FRAME_LASTpublic static final int INTERNAL_FRAME_LAST The last number in the range of IDs used for internal frame events.- See Also:
- Constant Field Values
 
 - 
INTERNAL_FRAME_OPENEDpublic 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 Values
 
 - 
INTERNAL_FRAME_CLOSINGpublic 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 thesetClosedmethod.
 - 
INTERNAL_FRAME_CLOSEDpublic 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 thesetClosedordisposemethod.
 - 
INTERNAL_FRAME_ICONIFIEDpublic static final int INTERNAL_FRAME_ICONIFIED The "window iconified" event. This event indicates that the internal frame was shrunk down to a small icon.
 - 
INTERNAL_FRAME_DEICONIFIEDpublic 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.
 - 
INTERNAL_FRAME_ACTIVATEDpublic 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.
 - 
INTERNAL_FRAME_DEACTIVATEDpublic 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.
 
- 
 - 
Constructor Detail- 
InternalFrameEventpublic InternalFrameEvent(JInternalFrame source, int id) Constructs anInternalFrameEventobject.- Parameters:
- source- the- JInternalFrameobject that originated the event
- id- an integer indicating the type of event
 
 
- 
 - 
Method Detail- 
paramStringpublic String paramString() Returns a parameter string identifying this event. This method is useful for event logging and for debugging.- Overrides:
- paramStringin class- AWTEvent
- Returns:
- a string identifying the event and its attributes
 
 - 
getInternalFramepublic JInternalFrame getInternalFrame() Returns the originator of the event.- Returns:
- the JInternalFrameobject that originated the event
- Since:
- 1.3
 
 
- 
 
-