Uses of Interface
javax.swing.event.AncestorListener
-
Packages that use AncestorListener 软件包 描述 com.sun.java.accessibility.util 提供组成Java Accessibility Utilities的接口和类的集合。javax.swing 提供一组“轻量级”(全Java语言)组件,这些组件在所有平台上尽可能地工作。 -
-
Uses of AncestorListener in com.sun.java.accessibility.util
Methods in com.sun.java.accessibility.util with parameters of type AncestorListener 变量和类型 方法 描述 static void
SwingEventMonitor. addAncestorListener(AncestorListener l)
添加指定的侦听器以在Java虚拟机中的每个组件实例上发生所有ANCESTOR
事件。static void
SwingEventMonitor. removeAncestorListener(AncestorListener l)
删除指定的侦听器,以便它们在发生时不再接收ANCESTOR
事件。 -
Uses of AncestorListener in javax.swing
Methods in javax.swing that return AncestorListener 变量和类型 方法 描述 AncestorListener[]
JComponent. getAncestorListeners()
返回在此组件上注册的所有祖先侦听器的数组。Methods in javax.swing with parameters of type AncestorListener 变量和类型 方法 描述 void
JComponent. addAncestorListener(AncestorListener listener)
注册listener
以便当它或它的任何祖先移动或变得可见或不可见时它将收到AncestorEvents
。void
JComponent. removeAncestorListener(AncestorListener listener)
Unregisterslistener
so that it will no longer receiveAncestorEvents
.
-