public abstract class ContainerAdapter extends Object implements ContainerListener
扩展此类以创建一个ContainerEvent
侦听器,并覆盖感兴趣的事件的方法。 (如果您实现ContainerListener
接口,则必须定义其中的所有方法,这个抽象类为它们定义了空方法,因此您只能定义关心事件的方法。)
使用扩展类创建侦听器对象,然后使用组件的addContainerListener
方法将其注册到组件。 当容器的内容因添加或删除组件而发生变化时,将调用侦听器对象中的相关方法,并传递ContainerEvent
。
ContainerEvent
, ContainerListener
, Tutorial: Writing a Container Listener
Constructor and Description |
---|
ContainerAdapter() |
Modifier and Type | Method and Description |
---|---|
void |
componentAdded(ContainerEvent e)
当组件已添加到容器时调用。
|
void |
componentRemoved(ContainerEvent e)
当组件从容器中删除时调用。
|
public void componentAdded(ContainerEvent e)
componentAdded
在界面
ContainerListener
public void componentRemoved(ContainerEvent e)
componentRemoved
在界面
ContainerListener
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.