|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
java.lang.Object java.awt.event.ContainerAdapter
public abstract class ContainerAdapter
用於接收容器事件的抽象適配器類別。此類別中的方法為空。此類別存在的目的只是為了便於創建偵聽器物件。
擴展此類別可創建 ContainerEvent
偵聽器並針對感興趣的事件覆寫方法。(如果實作 ContainerListener
介面,則必須定義該介面中的所有方法。此抽象類別將所有這些方法都定義為 null,所以您只需針對所關心的事件覆寫方法。)
使用擴展的類別創建一個偵聽器物件,然後使用元件的 addContainerListener
方法向元件註冊。當容器的內容因為添加和移除元件而更改時,可調用偵聽器物件中的相關方法,並將 ContainerEvent
傳遞給它。
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 |
建構子詳細資訊 |
---|
public ContainerAdapter()
方法詳細資訊 |
---|
public void componentAdded(ContainerEvent e)
ContainerListener
中的 componentAdded
public void componentRemoved(ContainerEvent e)
ContainerListener
中的 componentRemoved
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。