Following is the declaration for java.awt.event.ContainerEvent class
public class ContainerEvent extends ComponentEvent
Table of Contents
# Field
Following are the fields for java.awt.Component class
static int COMPONENT_ADDED− This event indicates that a component was added to the container.static int COMPONENT_REMOVED− This event indicates that a component was removed from the container.static int CONTAINER_FIRST− The first number in the range of IDs used for container events.static int CONTAINER_LAST− The last number in the range of IDs used for container events.
# Constructors
ContainerEvent(Component source, int id, Component child) | Constructs a ContainerEvent object. |
# Methods
Component getChild() | Returns the component that was affected by the event. |
Container getContainer() | Returns the originator of the event. |
String paramString() | Returns a parameter string identifying this event. |
# Methods Inherited
- java.awt.ComponentEvent
- java.awt.AWTEvent
- java.util.EventObject
- java.lang.Object