public interface ContainerListener extends EventListener
ContainerAdapter
类(仅覆盖了感兴趣的方法)。
然后,使用组件的addContainerListener
方法将从该类创建的侦听器对象注册到组件。
当容器中的内容改变,因为一个部件已被添加或删除,在收听对象中的相关方法被调用,并且ContainerEvent
被传递给它。
集装箱事件仅供通报用途; AWT将自动处理内部的添加和删除操作,以便程序正常工作,无论程序是否注册ContainerListener
。
ContainerAdapter
, ContainerEvent
, Tutorial: Writing a Container Listener
Modifier and Type | Method and Description |
---|---|
void |
componentAdded(ContainerEvent e)
当组件已添加到容器时调用。
|
void |
componentRemoved(ContainerEvent e)
当组件从容器中删除时调用。
|
void componentAdded(ContainerEvent e)
void componentRemoved(ContainerEvent e)
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.