java.awt.event
Interface ComponentListener
java.lang.Object
|
+--java.util.EventListener
|
+--java.awt.event.ComponentListener
All Implemented Interfaces:
EventListener
This interface is for classes that receive all events from a component.
Normally it is not necessary to process these events since the AWT
handles them internally, taking all appropriate actions. To watch a subset
of these events, use a ComponentAdapter.
Since:Author:- Aaron M. Renn <arenn@urbanophile.com>
See Also:
componentHidden
public void componentHidden(java.awt.event.ComponentEvent event)
This method is called when the component is hidden.
Parameters:
componentMoved
public void componentMoved(java.awt.event.ComponentEvent event)
This method is called when the component is moved.
Parameters:
componentResized
public void componentResized(java.awt.event.ComponentEvent event)
This method is called when the component is resized.
Parameters:
componentShown
public void componentShown(java.awt.event.ComponentEvent event)
This method is called when the component is made visible.
Parameters: