JavaTM 2 Platform
Standard Ed. 6

java.awt.event
類別 ContainerAdapter

java.lang.Object
  繼承者 java.awt.event.ContainerAdapter
所有已實作的介面:
ContainerListener, EventListener

public abstract class ContainerAdapter
extends Object
implements ContainerListener

用於接收容器事件的抽象適配器類別。此類別中的方法為空。此類別存在的目的只是為了便於創建偵聽器物件。

擴展此類別可創建 ContainerEvent 偵聽器並針對感興趣的事件覆寫方法。(如果實作 ContainerListener 介面,則必須定義該介面中的所有方法。此抽象類別將所有這些方法都定義為 null,所以您只需針對所關心的事件覆寫方法。)

使用擴展的類別創建一個偵聽器物件,然後使用元件的 addContainerListener 方法向元件註冊。當容器的內容因為添加和移除元件而更改時,可調用偵聽器物件中的相關方法,並將 ContainerEvent 傳遞給它。

從以下版本開始:
1.1
另請參見:
ContainerEvent, ContainerListener, Tutorial: Writing a Container Listener

建構子摘要
ContainerAdapter()
           
 
方法摘要
 void componentAdded(ContainerEvent e)
          已將元件添加到容器中時調用。
 void componentRemoved(ContainerEvent e)
          已從容器中移除元件時調用。
 
從類別 java.lang.Object 繼承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

建構子詳細資訊

ContainerAdapter

public ContainerAdapter()
方法詳細資訊

componentAdded

public void componentAdded(ContainerEvent e)
已將元件添加到容器中時調用。

指定者:
介面 ContainerListener 中的 componentAdded

componentRemoved

public void componentRemoved(ContainerEvent e)
已從容器中移除元件時調用。

指定者:
介面 ContainerListener 中的 componentRemoved

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only