Module java.desktop
Package javax.swing.plaf.basic
Class BasicInternalFrameUI.BasicInternalFrameListener
- java.lang.Object
-
- javax.swing.plaf.basic.BasicInternalFrameUI.BasicInternalFrameListener
-
- All Implemented Interfaces:
EventListener,InternalFrameListener
- Enclosing class:
- BasicInternalFrameUI
protected class BasicInternalFrameUI.BasicInternalFrameListener extends Object implements InternalFrameListener
Basic internal frame listener.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedBasicInternalFrameListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidinternalFrameActivated(InternalFrameEvent e)Invoked when an internal frame is activated.voidinternalFrameClosed(InternalFrameEvent e)Invoked when an internal frame has been closed.voidinternalFrameClosing(InternalFrameEvent e)Invoked when an internal frame is in the process of being closed.voidinternalFrameDeactivated(InternalFrameEvent e)Invoked when an internal frame is de-activated.voidinternalFrameDeiconified(InternalFrameEvent e)Invoked when an internal frame is de-iconified.voidinternalFrameIconified(InternalFrameEvent e)Invoked when an internal frame is iconified.voidinternalFrameOpened(InternalFrameEvent e)Invoked when a internal frame has been opened.
-
-
-
Method Detail
-
internalFrameClosing
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.- Specified by:
internalFrameClosingin interfaceInternalFrameListener- Parameters:
e- anInternalFrameEventwith information about theJInteralFramethat originated the event- See Also:
JInternalFrame.setDefaultCloseOperation(int)
-
internalFrameClosed
public void internalFrameClosed(InternalFrameEvent e)
Invoked when an internal frame has been closed.- Specified by:
internalFrameClosedin interfaceInternalFrameListener- Parameters:
e- anInternalFrameEventwith information about theJInteralFramethat originated the event- See Also:
JInternalFrame.setClosed(boolean)
-
internalFrameOpened
public void internalFrameOpened(InternalFrameEvent e)
Invoked when a internal frame has been opened.- Specified by:
internalFrameOpenedin interfaceInternalFrameListener- Parameters:
e- anInternalFrameEventwith information about theJInteralFramethat originated the event- See Also:
JInternalFrame.show()
-
internalFrameIconified
public void internalFrameIconified(InternalFrameEvent e)
Invoked when an internal frame is iconified.- Specified by:
internalFrameIconifiedin interfaceInternalFrameListener- Parameters:
e- anInternalFrameEventwith information about theJInteralFramethat originated the event- See Also:
JInternalFrame.setIcon(boolean)
-
internalFrameDeiconified
public void internalFrameDeiconified(InternalFrameEvent e)
Invoked when an internal frame is de-iconified.- Specified by:
internalFrameDeiconifiedin interfaceInternalFrameListener- Parameters:
e- anInternalFrameEventwith information about theJInteralFramethat originated the event- See Also:
JInternalFrame.setIcon(boolean)
-
internalFrameActivated
public void internalFrameActivated(InternalFrameEvent e)
Invoked when an internal frame is activated.- Specified by:
internalFrameActivatedin interfaceInternalFrameListener- Parameters:
e- anInternalFrameEventwith information about theJInteralFramethat originated the event- See Also:
JInternalFrame.setSelected(boolean)
-
internalFrameDeactivated
public void internalFrameDeactivated(InternalFrameEvent e)
Invoked when an internal frame is de-activated.- Specified by:
internalFrameDeactivatedin interfaceInternalFrameListener- Parameters:
e- anInternalFrameEventwith information about theJInteralFramethat originated the event- See Also:
JInternalFrame.setSelected(boolean)
-
-