Previous | Next | Trail Map | Creating a User Interface (AWT Only) | Using Components, the GUI Building Blocks

Writing a Container Listener

Container events are generated by a Container just after a component is added to or removed from the container. These events are for notification only -- no container listener need be present for components to be successfully added or removed.

Container Event Methods

The ContainerListener(in the API reference documentation) interface and its corresponding adapter class, ContainerAdapter(in the API reference documentation), contain two methods:
void componentAdded(ContainerEvent)
Called by the AWT just after a component is added to the listened-to container.
void componentRemoved(ContainerEvent)
Called by the AWT just after a component is removed from the listened-to container.

Examples of Handling Container Events

The following applet demonstrates container events. By clicking "Add a button" or "Remove a button", you can add components to or remove them from a panel at the bottom of the applet. Each time a component is added to or removed from the panel, the panel fires off a container event, and the panel's container listener is notified. The listener displays descriptive messages in the text area at the top of the applet.


Note: The above applet requires JDK 1.1. If you are using an older browser that does not support 1.1, you won't be able to run the applet. Instead, you need to view this page in a 1.1-compliant browser, such as HotJava or the JDK Applet Viewer (appletviewer).

Try this:
  1. Click the button labeled "Add a button".
    You'll see a button appear near the bottom of the applet. The container listener (in this example, an instance of ContainerEventDemo) reacts to the resulting component-added event by displaying "Button #1 was added to java.awt.Panel" at the top of the applet.
  2. Click the button labeled "Remove a button".
    This removes the most recently added button from the panel, causing the container listener to receive a component-removed event.

You can find the applet's code in ContainerEventDemo.java. Here is the applet's container event handling code:

public class ContainerEventDemo ... implements ContainerListener ... {
    ...//where initialization occurs:
	buttonPanel = new Panel();
	buttonPanel.addContainerListener(this);
    ...
    public void componentAdded(ContainerEvent e) {
	displayMessage(" added to ", e);
    }

    public void componentRemoved(ContainerEvent e) {
	displayMessage(" removed from ", e);
    }

    void displayMessage(String action, ContainerEvent e) {
	display.append(((Button)e.getChild()).getLabel()
		       + " was"
		       + action
		       + e.getContainer().getClass().getName()
		       + "\n");
    }
    ...
}

The ContainerEvent Class

Each container event method has a single parameter: a ContainerEvent(in the API reference documentation) object. The ContainerEvent class defines two useful methods:
Component getChild()
Returns the component whose addition or removal triggered this event.
Container getContainer()
Returns the container that fired this event.


Previous | Next | Trail Map | Creating a User Interface (AWT Only) | Using Components, the GUI Building Blocks