public abstract class InternalFrameAdapter extends Object implements InternalFrameListener
An abstract adapter class for receiving internal frame events. The methods in this class are empty. This class exists as convenience for creating listener objects, and is functionally equivalent to the WindowAdapter class in the AWT.
See How to Write an Internal Frame Listener in The Java Tutorial
InternalFrameEvent
, InternalFrameListener
, WindowListener
public InternalFrameAdapter()
public void internalFrameOpened(InternalFrameEvent e)
Invoked when an internal frame has been opened.
internalFrameOpened
in interface InternalFrameListener
JInternalFrame.show()
public void internalFrameClosing(InternalFrameEvent e)
Invoked when an internal frame is in the process of being closed. The close operation can be overridden at this point.
internalFrameClosing
in interface InternalFrameListener
JInternalFrame.setDefaultCloseOperation(int)
public void internalFrameClosed(InternalFrameEvent e)
Invoked when an internal frame has been closed.
internalFrameClosed
in interface InternalFrameListener
JInternalFrame.setClosed(boolean)
public void internalFrameIconified(InternalFrameEvent e)
Invoked when an internal frame is iconified.
internalFrameIconified
in interface InternalFrameListener
JInternalFrame.setIcon(boolean)
public void internalFrameDeiconified(InternalFrameEvent e)
Invoked when an internal frame is de-iconified.
internalFrameDeiconified
in interface InternalFrameListener
JInternalFrame.setIcon(boolean)
public void internalFrameActivated(InternalFrameEvent e)
Invoked when an internal frame is activated.
internalFrameActivated
in interface InternalFrameListener
JInternalFrame.setSelected(boolean)
public void internalFrameDeactivated(InternalFrameEvent e)
Invoked when an internal frame is de-activated.
internalFrameDeactivated
in interface InternalFrameListener
JInternalFrame.setSelected(boolean)
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.