Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

java.awt.event
Interface ComponentListener  view ComponentListener download ComponentListener.java

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
ComponentAdapter

public interface ComponentListener
extends java.util.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:
1.1

Method Summary
 void componentHidden(ComponentEvent event)
          This method is called when the component is hidden.
 void componentMoved(ComponentEvent event)
          This method is called when the component is moved.
 void componentResized(ComponentEvent event)
          This method is called when the component is resized.
 void componentShown(ComponentEvent event)
          This method is called when the component is made visible.
 

Method Detail

componentResized

public void componentResized(ComponentEvent event)
This method is called when the component is resized.


componentMoved

public void componentMoved(ComponentEvent event)
This method is called when the component is moved.


componentShown

public void componentShown(ComponentEvent event)
This method is called when the component is made visible.


componentHidden

public void componentHidden(ComponentEvent event)
This method is called when the component is hidden.