Class SwingEventMonitor



  • public class SwingEventMonitor
    extends AWTEventMonitor

    SwingEventMonitor通过添加一个有条件地安装在Java虚拟机中的每个Swing组件实例上的监听SwingEventMonitor扩展AWTEventMonitor 这些听众捕获的事件可以通过SwingEventMonitor支持的统一的监听器提供。 这样,每个AWT和Swing组件实例上的所有个别事件都会被汇总到按类别细分的一组监听器中(有关类别,请参阅EventID )。

    该类依赖于EventQueueMonitor ,它为创建顶级容器提供了基本级别的支持。

    因为这个类扩展了AWTEventMonitor ,所以没有必要同时使用这个类和AWTEventMonitor 如果你想监视AWT和Swing组件,你应该只使用这个类。

    另请参见:
    AWTEventMonitor