|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object java.util.EventObject java.awt.AWTEvent javax.swing.event.AncestorEvent
public class AncestorEvent
报告给子组件的事件,该子组件源自组件层次结构中的某个祖先。
警告:此类的序列化对象将与以后的 Swing 版本不兼容。当前的序列化支持适用于短期存储或运行相同 Swing 版本的应用程序之间的 RMI。从 1.4 版本开始,已在 java.beans
包中添加了支持所有 JavaBeansTM 长期存储的功能。请参见 XMLEncoder
。
字段摘要 | |
---|---|
static int |
ANCESTOR_ADDED 某个祖先组件被添加到可见对象的层次结构中(使其可见),并且目前正显示该组件。 |
static int |
ANCESTOR_MOVED 某个祖先组件更改了其屏幕位置。 |
static int |
ANCESTOR_REMOVED 某个祖先组件从可见对象的层次结构中被移除(隐藏它),并且不再显示该组件。 |
从类 java.util.EventObject 继承的字段 |
---|
source |
构造方法摘要 | |
---|---|
AncestorEvent(JComponent source, int id, Container ancestor, Container ancestorParent) 构造一个 AncestorEvent 对象,以标识祖先组件显示状态的更改。 |
方法摘要 | |
---|---|
Container |
getAncestor() 返回实际发生事件的祖先组件。 |
Container |
getAncestorParent() 返回实际发生事件的祖先组件的父组件。 |
JComponent |
getComponent() 返回添加了侦听器的组件。 |
从类 java.awt.AWTEvent 继承的方法 |
---|
consume, getID, isConsumed, paramString, setSource, toString |
从类 java.util.EventObject 继承的方法 |
---|
getSource |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
字段详细信息 |
---|
public static final int ANCESTOR_ADDED
public static final int ANCESTOR_REMOVED
public static final int ANCESTOR_MOVED
构造方法详细信息 |
---|
public AncestorEvent(JComponent source, int id, Container ancestor, Container ancestorParent)
source
- 发起事件的 JComponent(通常为
this
)
id
- 指定
ANCESTOR_ADDED
、
ANCESTOR_REMOVED
或
ANCESTOR_MOVED
的 int 值
ancestor
- 指定显示状态已发生更改的祖先容器的 Container 对象
ancestorParent
- 指定祖先容器的父容器的 Container 对象
方法详细信息 |
---|
public Container getAncestor()
public Container getAncestorParent()
public JComponent getComponent()
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。