- SWING 教程
- SWING - 主页
- SWING - 概述
- SWING - 环境
- SWING - 控件
- SWING - 事件处理
- SWING - 事件类
- SWING - 事件侦听器
- SWING - 事件适配器
- SWING - 布局
- SWING - 菜单
- SWING - 容器
- SWING 有用资源
- SWING - 快速指南
- SWING - 有用资源
- SWING - 讨论
SWING - 容器事件类
简介
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 范围内的最后一个数字。
类构造函数
序列号 | 构造函数和说明 |
---|---|
1 |
ContainerEvent(Component source, int id, Component child) 构造 ContainerEvent 对象。 |
类方法
序号 | 方法和说明 |
---|---|
1 |
Component getChild() 返回受事件影响的组件。 |
2 |
Container getContainer() 返回事件的引发者。 |
3 |
String paramString() 返回标识此事件的参数字符串。 |
继承的方法
此类继承了以下类的以下方法 -
- java.awt.ComponentEvent
- java.awt.AWTEvent
- java.util.EventObject
- java.lang.Object
swing_event_classes.htm
广告