public abstract class InternalFrameAdapter extends Object implements InternalFrameListener
See How to Write an Internal Frame Listener in The Java Tutorial
InternalFrameEvent
,
InternalFrameListener
,
WindowListener
Constructor and Description |
---|
InternalFrameAdapter() |
Modifier and Type | Method and Description |
---|---|
void |
internalFrameActivated(InternalFrameEvent e)
Invoked when an internal frame is activated.
|
void |
internalFrameClosed(InternalFrameEvent e)
Invoked when an internal frame has been closed.
|
void |
internalFrameClosing(InternalFrameEvent e)
Invoked when an internal frame is in the process of being closed.
|
void |
internalFrameDeactivated(InternalFrameEvent e)
Invoked when an internal frame is de-activated.
|
void |
internalFrameDeiconified(InternalFrameEvent e)
Invoked when an internal frame is de-iconified.
|
void |
internalFrameIconified(InternalFrameEvent e)
Invoked when an internal frame is iconified.
|
void |
internalFrameOpened(InternalFrameEvent e)
Invoked when an internal frame has been opened.
|
public void internalFrameOpened(InternalFrameEvent e)
internalFrameOpened
in interface InternalFrameListener
e
- an InternalFrameEvent
with information about the
JInteralFrame
that originated the eventJInternalFrame.show()
public void internalFrameClosing(InternalFrameEvent e)
internalFrameClosing
in interface InternalFrameListener
e
- an InternalFrameEvent
with information about the
JInteralFrame
that originated the eventJInternalFrame.setDefaultCloseOperation(int)
public void internalFrameClosed(InternalFrameEvent e)
internalFrameClosed
in interface InternalFrameListener
e
- an InternalFrameEvent
with information about the
JInteralFrame
that originated the eventJInternalFrame.setClosed(boolean)
public void internalFrameIconified(InternalFrameEvent e)
internalFrameIconified
in interface InternalFrameListener
e
- an InternalFrameEvent
with information about the
JInteralFrame
that originated the eventJInternalFrame.setIcon(boolean)
public void internalFrameDeiconified(InternalFrameEvent e)
internalFrameDeiconified
in interface InternalFrameListener
e
- an InternalFrameEvent
with information about the
JInteralFrame
that originated the eventJInternalFrame.setIcon(boolean)
public void internalFrameActivated(InternalFrameEvent e)
internalFrameActivated
in interface InternalFrameListener
e
- an InternalFrameEvent
with information about the
JInteralFrame
that originated the eventJInternalFrame.setSelected(boolean)
public void internalFrameDeactivated(InternalFrameEvent e)
internalFrameDeactivated
in interface InternalFrameListener
e
- an InternalFrameEvent
with information about the
JInteralFrame
that originated the eventJInternalFrame.setSelected(boolean)
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2016, Oracle and/or its affiliates. All rights reserved.
DRAFT 9-internal+0-2016-01-26-133437.ivan.openjdk9onspinwait