Class AWTEventMonitor

java.lang.Object
com.sun.java.accessibility.util.AWTEventMonitor
Direct Known Subclasses:
SwingEventMonitor

public class AWTEventMonitor extends Object

The AWTEventMonitor implements a suite of listeners that are conditionally installed on every AWT component instance in the Java Virtual Machine. The events captured by these listeners are made available through a unified set of listeners supported by AWTEventMonitor. With this, all the individual events on each of the AWT component instances are funneled into one set of listeners broken down by category (see EventID for the categories).

This class depends upon EventQueueMonitor, which provides the base level support for capturing the top-level containers as they are created.

  • Constructor Details Link icon

    • AWTEventMonitor Link icon

      public AWTEventMonitor()
      Constructs an AWTEventMonitor.
  • Method Details Link icon

    • getComponentWithFocus Link icon

      public static Component getComponentWithFocus()
      Returns the component that currently has keyboard focus. The return value can be null.
      Returns:
      the component that has keyboard focus
    • addComponentListener Link icon

      public static void addComponentListener(ComponentListener l)
      Adds the specified listener to receive all COMPONENT events on each component instance in the Java Virtual Machine as they occur.

      Note: this listener is automatically added to all component instances created after this method is called. In addition, it is only added to component instances that support this listener type.

      Parameters:
      l - the listener to add
      See Also:
    • removeComponentListener Link icon

      public static void removeComponentListener(ComponentListener l)
      Removes the specified listener so it no longer receives COMPONENT events when they occur.
      Parameters:
      l - the listener to remove
      See Also:
    • addContainerListener Link icon

      public static void addContainerListener(ContainerListener l)
      Adds the specified listener to receive all CONTAINER events on each component instance in the Java Virtual Machine as they occur.

      Note: this listener is automatically added to all component instances created after this method is called. In addition, it is only added to component instances that support this listener type.

      Parameters:
      l - the listener to add
      See Also:
    • removeContainerListener Link icon

      public static void removeContainerListener(ContainerListener l)
      Removes the specified listener so it no longer receives CONTAINER events when they occur.
      Parameters:
      l - the listener to remove
      See Also:
    • addFocusListener Link icon

      public static void addFocusListener(FocusListener l)
      Adds the specified listener to receive all FOCUS events on each component instance in the Java Virtual Machine when they occur.

      Note: this listener is automatically added to all component instances created after this method is called. In addition, it is only added to component instances that support this listener type.

      Parameters:
      l - the listener to add
      See Also:
    • removeFocusListener Link icon

      public static void removeFocusListener(FocusListener l)
      Removes the specified listener so it no longer receives FOCUS events when they occur.
      Parameters:
      l - the listener to remove
      See Also:
    • addKeyListener Link icon

      public static void addKeyListener(KeyListener l)
      Adds the specified listener to receive all KEY events on each component instance in the Java Virtual Machine when they occur.

      Note: this listener is automatically added to all component instances created after this method is called. In addition, it is only added to component instances that support this listener type.

      Parameters:
      l - the listener to add
      See Also:
    • removeKeyListener Link icon

      public static void removeKeyListener(KeyListener l)
      Removes the specified listener so it no longer receives KEY events when they occur.
      Parameters:
      l - the listener to remove
      See Also:
    • addMouseListener Link icon

      public static void addMouseListener(MouseListener l)
      Adds the specified listener to receive all MOUSE events on each component instance in the Java Virtual Machine when they occur.

      Note: this listener is automatically added to all component instances created after this method is called. In addition, it is only added to component instances that support this listener type.

      Parameters:
      l - the listener to add
      See Also:
    • removeMouseListener Link icon

      public static void removeMouseListener(MouseListener l)
      Removes the specified listener so it no longer receives MOUSE events when they occur.
      Parameters:
      l - the listener to remove
      See Also:
    • addMouseMotionListener Link icon

      public static void addMouseMotionListener(MouseMotionListener l)
      Adds the specified listener to receive all mouse MOTION events on each component instance in the Java Virtual Machine when they occur.

      Note: this listener is automatically added to all component instances created after this method is called. In addition, it is only added to component instances that support this listener type.

      Parameters:
      l - the listener to add
      See Also:
    • removeMouseMotionListener Link icon

      public static void removeMouseMotionListener(MouseMotionListener l)
      Removes the specified listener so it no longer receives MOTION events when they occur.
      Parameters:
      l - the listener to remove
      See Also:
    • addWindowListener Link icon

      public static void addWindowListener(WindowListener l)
      Adds the specified listener to receive all WINDOW events on each component instance in the Java Virtual Machine when they occur.

      Note: this listener is automatically added to all component instances created after this method is called. In addition, it is only added to component instances that support this listener type.

      Parameters:
      l - the listener to add
      See Also:
    • removeWindowListener Link icon

      public static void removeWindowListener(WindowListener l)
      Removes the specified listener so it no longer receives WINDOW events when they occur.
      Parameters:
      l - the listener to remove
      See Also:
    • addActionListener Link icon

      public static void addActionListener(ActionListener l)
      Adds the specified listener to receive all ACTION events on each component instance in the Java Virtual Machine when they occur.

      Note: This listener is automatically added to all component instances created after this method is called. In addition, it is only added to component instances that support this listener type.

      Parameters:
      l - the listener to add
      See Also:
    • removeActionListener Link icon

      public static void removeActionListener(ActionListener l)
      Removes the specified listener so it no longer receives ACTION events when they occur.
      Parameters:
      l - the listener to remove
      See Also:
    • addAdjustmentListener Link icon

      public static void addAdjustmentListener(AdjustmentListener l)
      Adds the specified listener to receive all ADJUSTMENT events on each component instance in the Java Virtual Machine when they occur.

      Note: this listener is automatically added to all component instances created after this method is called. In addition, it is only added to component instances that support this listener type.

      Parameters:
      l - the listener to add
      See Also:
    • removeAdjustmentListener Link icon

      public static void removeAdjustmentListener(AdjustmentListener l)
      Removes the specified listener so it no longer receives ADJUSTMENT events when they occur.
      Parameters:
      l - the listener to remove
      See Also:
    • addItemListener Link icon

      public static void addItemListener(ItemListener l)
      Adds the specified listener to receive all ITEM events on each component instance in the Java Virtual Machine when they occur.

      Note: this listener is automatically added to all component instances created after this method is called. In addition, it is only added to component instances that support this listener type.

      Parameters:
      l - the listener to add
      See Also:
    • removeItemListener Link icon

      public static void removeItemListener(ItemListener l)
      Removes the specified listener so it no longer receives ITEM events when they occur.
      Parameters:
      l - the listener to remove
      See Also:
    • addTextListener Link icon

      public static void addTextListener(TextListener l)
      Adds the specified listener to receive all TEXT events on each component instance in the Java Virtual Machine when they occur.

      Note: this listener is automatically added to all component instances created after this method is called. In addition, it is only added to component instances that support this listener type.

      Parameters:
      l - the listener to add
      See Also:
    • removeTextListener Link icon

      public static void removeTextListener(TextListener l)
      Removes the specified listener so it no longer receives TEXT events when they occur.
      Parameters:
      l - the listener to remove
      See Also: