javax.swing.plaf.basic

Class BasicInternalFrameUI.ComponentHandler

protected class BasicInternalFrameUI.ComponentHandler extends Object implements ComponentListener

This helper class listens to the JDesktopPane that parents this JInternalFrame and listens for resize events and resizes the JInternalFrame appropriately.
Method Summary
voidcomponentHidden(ComponentEvent e)
This method is called when the JDesktopPane is hidden.
voidcomponentMoved(ComponentEvent e)
This method is called when the JDesktopPane is moved.
voidcomponentResized(ComponentEvent e)
This method is called when the JDesktopPane is resized.
voidcomponentShown(ComponentEvent e)
This method is called when the JDesktopPane is shown.

Method Detail

componentHidden

public void componentHidden(ComponentEvent e)
This method is called when the JDesktopPane is hidden.

Parameters: e The ComponentEvent fired.

componentMoved

public void componentMoved(ComponentEvent e)
This method is called when the JDesktopPane is moved.

Parameters: e The ComponentEvent fired.

componentResized

public void componentResized(ComponentEvent e)
This method is called when the JDesktopPane is resized.

Parameters: e The ComponentEvent fired.

componentShown

public void componentShown(ComponentEvent e)
This method is called when the JDesktopPane is shown.

Parameters: e The ComponentEvent fired.