- java.lang.Object
-
- java.awt.event.ContainerAdapter
-
- All Implemented Interfaces:
-
ContainerListener
,EventListener
public abstract class ContainerAdapter extends Object implements ContainerListener
用于接收容器事件的抽象适配器类。 这个类中的方法是空的。 此类作为创建侦听器对象的方便而存在。扩展此类以创建一个
ContainerEvent
监听器并覆盖感兴趣的事件的方法。 (如果您实现了ContainerListener
接口,则必须定义其中的所有方法,这个抽象类为它们定义了空方法,因此您只能为所关心的事件定义方法。)使用扩展类创建侦听器对象,然后使用组件的
addContainerListener
方法将其注册到组件。 当容器的内容因添加或删除组件而发生变化时,将调用侦听器对象中的相关方法,并将其传递给其中的ContainerEvent
。- 从以下版本开始:
- 1.1
- 另请参见:
-
ContainerEvent
,ContainerListener
, Tutorial: Writing a Container Listener
-
-
构造方法摘要
构造方法 Constructor 描述 ContainerAdapter()
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 void
componentAdded(ContainerEvent e)
当组件已添加到容器时调用。void
componentRemoved(ContainerEvent e)
当组件从容器中删除时调用。
-
-
-
方法详细信息
-
componentAdded
public void componentAdded(ContainerEvent e)
当组件已添加到容器时调用。- Specified by:
-
componentAdded
在接口ContainerListener
- 参数
-
e
- 要处理的事件
-
componentRemoved
public void componentRemoved(ContainerEvent e)
当组件从容器中删除时调用。- Specified by:
-
componentRemoved
在接口ContainerListener
- 参数
-
e
- 要处理的事件
-
-