Class SwingEventMonitor


  • public class SwingEventMonitor
    extends AWTEventMonitor

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

    此类依赖于EventQueueMonitor ,它提供了在创建顶级容器时捕获它们的基本级别支持。

    因为此类扩展AWTEventMonitor ,所以不必同时使用此类和AWTEventMonitor 如果要监视AWT和Swing组件,则应该只使用此类。

    另请参见:
    AWTEventMonitor