See How to Write an Internal Frame Listener in The Java Tutorial
InternalFrameEvent
, InternalFrameListener
, java.awt.event.WindowListener
Access | Constructor and Description |
---|---|
protected |
Modifier and Type | Method and Description |
---|---|
public void | internalFrameActivated(InternalFrameEvent
an e)InternalFrameEvent with information about the
JInternalFrame that originated the eventImplements javax. |
public void | internalFrameClosed(InternalFrameEvent
an e)InternalFrameEvent with information about the
JInternalFrame that originated the eventImplements javax. |
public void | internalFrameClosing(InternalFrameEvent
an e)InternalFrameEvent with information about the
JInternalFrame that originated the eventImplements javax. |
public void | internalFrameDeactivated(InternalFrameEvent
an e)InternalFrameEvent with information about the
JInternalFrame that originated the eventImplements javax. |
public void | internalFrameDeiconified(InternalFrameEvent
an e)InternalFrameEvent with information about the
JInternalFrame that originated the eventImplements javax. |
public void | internalFrameIconified(InternalFrameEvent
an e)InternalFrameEvent with information about the
JInternalFrame that originated the eventImplements javax. |
public void | internalFrameOpened(InternalFrameEvent
an e)InternalFrameEvent with information about the
JInternalFrame that originated the eventImplements javax. |
InternalFrameAdapter | back to summary |
---|---|
protected InternalFrameAdapter() Constructor for subclasses to call. |
internalFrameActivated | back to summary |
---|---|
public void internalFrameActivated(InternalFrameEvent e) Implements javax. Invoked when an internal frame is activated.
|
internalFrameClosed | back to summary |
---|---|
public void internalFrameClosed(InternalFrameEvent e) Implements javax. Invoked when an internal frame has been closed.
|
internalFrameClosing | back to summary |
---|---|
public void internalFrameClosing(InternalFrameEvent e) Implements javax. Invoked when an internal frame is in the process of being closed. The close operation can be overridden at this point.
|
internalFrameDeactivated | back to summary |
---|---|
public void internalFrameDeactivated(InternalFrameEvent e) Implements javax. Invoked when an internal frame is de-activated.
|
internalFrameDeiconified | back to summary |
---|---|
public void internalFrameDeiconified(InternalFrameEvent e) Implements javax. Invoked when an internal frame is de-iconified.
|
internalFrameIconified | back to summary |
---|---|
public void internalFrameIconified(InternalFrameEvent e) Implements javax. Invoked when an internal frame is iconified.
|
internalFrameOpened | back to summary |
---|---|
public void internalFrameOpened(InternalFrameEvent e) Implements javax. Invoked when an internal frame has been opened.
|