- java.lang.Object
-
- javax.swing.plaf.basic.BasicInternalFrameUI.ComponentHandler
-
- All Implemented Interfaces:
ComponentListener,EventListener
- Enclosing class:
- BasicInternalFrameUI
protected class BasicInternalFrameUI.ComponentHandler extends Object implements ComponentListener
Component handler.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedComponentHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcomponentHidden(ComponentEvent e)Invoked when the component has been made invisible.voidcomponentMoved(ComponentEvent e)Invoked when the component's position changes.voidcomponentResized(ComponentEvent e)Invoked when a JInternalFrame's parent's size changes.voidcomponentShown(ComponentEvent e)Invoked when the component has been made visible.
-
-
-
Method Detail
-
componentResized
public void componentResized(ComponentEvent e)
Invoked when a JInternalFrame's parent's size changes.- Specified by:
componentResizedin interfaceComponentListener- Parameters:
e- the event to be processed
-
componentMoved
public void componentMoved(ComponentEvent e)
Invoked when the component's position changes.- Specified by:
componentMovedin interfaceComponentListener- Parameters:
e- the event to be processed
-
componentShown
public void componentShown(ComponentEvent e)
Invoked when the component has been made visible.- Specified by:
componentShownin interfaceComponentListener- Parameters:
e- the event to be processed
-
componentHidden
public void componentHidden(ComponentEvent e)
Invoked when the component has been made invisible.- Specified by:
componentHiddenin interfaceComponentListener- Parameters:
e- the event to be processed
-
-