AWT ContainerEvent類

介紹

ContainerEvent類代表一個容器的內容改變,因爲一個組件被添加或刪除。

類的聲明

以下是聲明的java.awt.event.ContainerEvent類:

public class ContainerEvent extends ComponentEvent

字段域

以下是java.awt.Component 類的字段:

  • static int COMPONENT_ADDED -- 此事件表示組件被添加到容器中。

  • static int COMPONENT_REMOVED -- 此事件表示組件從容器中取出。

  • static int CONTAINER_FIRST -- 用於容器事件的ID的範圍內的第一個數字。

  • static int CONTAINER_LAST -- 最後一個數字範圍內用於容器事件的ID。

類的構造函數

類方法

S.N.

構造函數&說明

1

ContainerEvent(Component source, int id, Component child)
Constructs a ContainerEvent object.

S.N.

方法&說明

1

Component getChild()
Returns the component that was affected by the event.

2

Container getContainer()
Returns the originator of the event.

3

String paramString()
Returns a parameter string identifying this event.

繼承的方法

這個類繼承的方法從以下類:

  • java.awt.ComponentEvent

  • java.awt.AWTEvent

  • java.util.EventObject

  • java.lang.Object