Class 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.
Field Summary
Modifier and Type | Field | Description |
---|---|---|
protected static ActionListener |
actionListener |
Deprecated, for removal: This API element is subject to removal in a future version. This field is unused. |
protected static AdjustmentListener |
adjustmentListener |
Deprecated, for removal: This API element is subject to removal in a future version. This field is unused. |
protected static ComponentListener |
componentListener |
Deprecated, for removal: This API element is subject to removal in a future version. This field is unused. |
protected static Component |
componentWithFocus |
Deprecated, for removal: This API element is subject to removal in a future version. This field is unused; to get the component with focus use the getComponentWithFocus method. |
protected static ContainerListener |
containerListener |
Deprecated, for removal: This API element is subject to removal in a future version. This field is unused. |
protected static FocusListener |
focusListener |
Deprecated, for removal: This API element is subject to removal in a future version. This field is unused. |
protected static ItemListener |
itemListener |
Deprecated, for removal: This API element is subject to removal in a future version. This field is unused. |
protected static KeyListener |
keyListener |
Deprecated, for removal: This API element is subject to removal in a future version. This field is unused. |
protected static MouseListener |
mouseListener |
Deprecated, for removal: This API element is subject to removal in a future version. This field is unused. |
protected static MouseMotionListener |
mouseMotionListener |
Deprecated, for removal: This API element is subject to removal in a future version. This field is unused. |
protected static TextListener |
textListener |
Deprecated, for removal: This API element is subject to removal in a future version. This field is unused. |
protected static WindowListener |
windowListener |
Deprecated, for removal: This API element is subject to removal in a future version. This field is unused. |
Constructor Summary
Constructor | Description |
---|---|
AWTEventMonitor() |
Constructs an AWTEventMonitor . |
Method Summary
Modifier and Type | Method | Description |
---|---|---|
static void |
addActionListener |
Adds the specified listener to receive all ACTION events on each component instance in the Java Virtual Machine when they occur. |
static void |
addAdjustmentListener |
Adds the specified listener to receive all ADJUSTMENT events on each component instance in the Java Virtual Machine when they occur. |
static void |
addComponentListener |
Adds the specified listener to receive all COMPONENT events on each component instance in the Java Virtual Machine as they occur. |
static void |
addContainerListener |
Adds the specified listener to receive all CONTAINER events on each component instance in the Java Virtual Machine as they occur. |
static void |
addFocusListener |
Adds the specified listener to receive all FOCUS events on each component instance in the Java Virtual Machine when they occur. |
static void |
addItemListener |
Adds the specified listener to receive all ITEM events on each component instance in the Java Virtual Machine when they occur. |
static void |
addKeyListener |
Adds the specified listener to receive all KEY events on each component instance in the Java Virtual Machine when they occur. |
static void |
addMouseListener |
Adds the specified listener to receive all MOUSE events on each component instance in the Java Virtual Machine when they occur. |
static void |
addMouseMotionListener |
Adds the specified listener to receive all mouse MOTION events on each component instance in the Java Virtual Machine when they occur. |
static void |
addTextListener |
Adds the specified listener to receive all TEXT events on each component instance in the Java Virtual Machine when they occur. |
static void |
addWindowListener |
Adds the specified listener to receive all WINDOW events on each component instance in the Java Virtual Machine when they occur. |
static Component |
getComponentWithFocus() |
Returns the component that currently has keyboard focus. |
static void |
removeActionListener |
Removes the specified listener so it no longer receives ACTION events when they occur. |
static void |
removeAdjustmentListener |
Removes the specified listener so it no longer receives ADJUSTMENT events when they occur. |
static void |
removeComponentListener |
Removes the specified listener so it no longer receives COMPONENT events when they occur. |
static void |
removeContainerListener |
Removes the specified listener so it no longer receives CONTAINER events when they occur. |
static void |
removeFocusListener |
Removes the specified listener so it no longer receives FOCUS events when they occur. |
static void |
removeItemListener |
Removes the specified listener so it no longer receives ITEM events when they occur. |
static void |
removeKeyListener |
Removes the specified listener so it no longer receives KEY events when they occur. |
static void |
removeMouseListener |
Removes the specified listener so it no longer receives MOUSE events when they occur. |
static void |
removeMouseMotionListener |
Removes the specified listener so it no longer receives MOTION events when they occur. |
static void |
removeTextListener |
Removes the specified listener so it no longer receives TEXT events when they occur. |
static void |
removeWindowListener |
Removes the specified listener so it no longer receives WINDOW events when they occur. |
Field Details
componentWithFocus
@Deprecated(since="8", forRemoval=true) protected static Component componentWithFocus
- See Also:
componentListener
@Deprecated(since="8", forRemoval=true) protected static ComponentListener componentListener
containerListener
@Deprecated(since="8", forRemoval=true) protected static ContainerListener containerListener
focusListener
@Deprecated(since="8", forRemoval=true) protected static FocusListener focusListener
keyListener
@Deprecated(since="8", forRemoval=true) protected static KeyListener keyListener
mouseListener
@Deprecated(since="8", forRemoval=true) protected static MouseListener mouseListener
mouseMotionListener
@Deprecated(since="8", forRemoval=true) protected static MouseMotionListener mouseMotionListener
windowListener
@Deprecated(since="8", forRemoval=true) protected static WindowListener windowListener
actionListener
@Deprecated(since="8", forRemoval=true) protected static ActionListener actionListener
adjustmentListener
@Deprecated(since="8", forRemoval=true) protected static AdjustmentListener adjustmentListener
itemListener
@Deprecated(since="8", forRemoval=true) protected static ItemListener itemListener
textListener
@Deprecated(since="8", forRemoval=true) protected static TextListener textListener
Constructor Details
AWTEventMonitor
public AWTEventMonitor()
AWTEventMonitor
.Method Details
getComponentWithFocus
public static Component getComponentWithFocus()
- Returns:
- the component that has keyboard focus
addComponentListener
public static void addComponentListener(ComponentListener l)
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
public static void removeComponentListener(ComponentListener l)
COMPONENT
events when they occur.- Parameters:
-
l
- the listener to remove - See Also:
addContainerListener
public static void addContainerListener(ContainerListener l)
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
public static void removeContainerListener(ContainerListener l)
CONTAINER
events when they occur.- Parameters:
-
l
- the listener to remove - See Also:
addFocusListener
public static void addFocusListener(FocusListener l)
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
public static void removeFocusListener(FocusListener l)
FOCUS
events when they occur.- Parameters:
-
l
- the listener to remove - See Also:
addKeyListener
public static void addKeyListener(KeyListener l)
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
public static void removeKeyListener(KeyListener l)
KEY
events when they occur.- Parameters:
-
l
- the listener to remove - See Also:
addMouseListener
public static void addMouseListener(MouseListener l)
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
public static void removeMouseListener(MouseListener l)
MOUSE
events when they occur.- Parameters:
-
l
- the listener to remove - See Also:
addMouseMotionListener
public static void addMouseMotionListener(MouseMotionListener l)
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
public static void removeMouseMotionListener(MouseMotionListener l)
MOTION
events when they occur.- Parameters:
-
l
- the listener to remove - See Also:
addWindowListener
public static void addWindowListener(WindowListener l)
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
public static void removeWindowListener(WindowListener l)
WINDOW
events when they occur.- Parameters:
-
l
- the listener to remove - See Also:
addActionListener
public static void addActionListener(ActionListener l)
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
public static void removeActionListener(ActionListener l)
ACTION
events when they occur.- Parameters:
-
l
- the listener to remove - See Also:
addAdjustmentListener
public static void addAdjustmentListener(AdjustmentListener l)
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
public static void removeAdjustmentListener(AdjustmentListener l)
ADJUSTMENT
events when they occur.- Parameters:
-
l
- the listener to remove - See Also:
addItemListener
public static void addItemListener(ItemListener l)
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
public static void removeItemListener(ItemListener l)
ITEM
events when they occur.- Parameters:
-
l
- the listener to remove - See Also:
addTextListener
public static void addTextListener(TextListener l)
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
public static void removeTextListener(TextListener l)
TEXT
events when they occur.- Parameters:
-
l
- the listener to remove - See Also:
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/jdk.accessibility/com/sun/java/accessibility/util/AWTEventMonitor.html