位置:首页 > Java技术 > Swing > SWING ContainerEvent事件处理类

SWING 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