Uses of Interface
javax.swing.event.AncestorListener
-
Packages that use AncestorListener 软件包 描述 com.sun.java.accessibility.util 提供组成Java辅助功能实用程序的接口和类的集合。javax.swing 提供一套“轻量级”(全Java语言)组件,尽可能地在所有平台上工作。 -
-
Uses of AncestorListener in com.sun.java.accessibility.util
Methods in com.sun.java.accessibility.util with parameters of type AncestorListener Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 AncestorListener[]
JComponent. getAncestorListeners()
返回在此组件上注册的所有祖先监听器的数组。Methods in javax.swing with parameters of type AncestorListener Modifier and Type 方法 描述 void
JComponent. addAncestorListener(AncestorListener listener)
注册listener
以便它或它的任何祖先移动或使其可见或不可见时将接收AncestorEvents
。void
JComponent. removeAncestorListener(AncestorListener listener)
Unregisterslistener
so that it will no longer receiveAncestorEvents
.
-