- 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
Fields 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
Constructors Constructor Description AWTEventMonitor()
-
Method Summary
Modifier and Type Method Description static void
addActionListener(ActionListener l)
Adds the specified listener to receive allACTION
events on each component instance in the Java Virtual Machine when they occur.static void
addAdjustmentListener(AdjustmentListener l)
Adds the specified listener to receive allADJUSTMENT
events on each component instance in the Java Virtual Machine when they occur.static void
addComponentListener(ComponentListener l)
Adds the specified listener to receive allCOMPONENT
events on each component instance in the Java Virtual Machine as they occur.static void
addContainerListener(ContainerListener l)
Adds the specified listener to receive allCONTAINER
events on each component instance in the Java Virtual Machine as they occur.static void
addFocusListener(FocusListener l)
Adds the specified listener to receive allFOCUS
events on each component instance in the Java Virtual Machine when they occur.static void
addItemListener(ItemListener l)
Adds the specified listener to receive allITEM
events on each component instance in the Java Virtual Machine when they occur.static void
addKeyListener(KeyListener l)
Adds the specified listener to receive allKEY
events on each component instance in the Java Virtual Machine when they occur.static void
addMouseListener(MouseListener l)
Adds the specified listener to receive allMOUSE
events on each component instance in the Java Virtual Machine when they occur.static void
addMouseMotionListener(MouseMotionListener l)
Adds the specified listener to receive all mouseMOTION
events on each component instance in the Java Virtual Machine when they occur.static void
addTextListener(TextListener l)
Adds the specified listener to receive allTEXT
events on each component instance in the Java Virtual Machine when they occur.static void
addWindowListener(WindowListener l)
Adds the specified listener to receive allWINDOW
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(ActionListener l)
Removes the specified listener so it no longer receivesACTION
events when they occur.static void
removeAdjustmentListener(AdjustmentListener l)
Removes the specified listener so it no longer receivesADJUSTMENT
events when they occur.static void
removeComponentListener(ComponentListener l)
Removes the specified listener so it no longer receivesCOMPONENT
events when they occur.static void
removeContainerListener(ContainerListener l)
Removes the specified listener so it no longer receivesCONTAINER
events when they occur.static void
removeFocusListener(FocusListener l)
Removes the specified listener so it no longer receivesFOCUS
events when they occur.static void
removeItemListener(ItemListener l)
Removes the specified listener so it no longer receivesITEM
events when they occur.static void
removeKeyListener(KeyListener l)
Removes the specified listener so it no longer receivesKEY
events when they occur.static void
removeMouseListener(MouseListener l)
Removes the specified listener so it no longer receivesMOUSE
events when they occur.static void
removeMouseMotionListener(MouseMotionListener l)
Removes the specified listener so it no longer receivesMOTION
events when they occur.static void
removeTextListener(TextListener l)
Removes the specified listener so it no longer receivesTEXT
events when they occur.static void
removeWindowListener(WindowListener l)
Removes the specified listener so it no longer receivesWINDOW
events when they occur.
-
Field Details
-
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.The current component with keyboard focus.- See Also:
getComponentWithFocus()
-
componentListener
Deprecated, for removal: This API element is subject to removal in a future version.This field is unused.The current list of registered ComponentListener classes. -
containerListener
Deprecated, for removal: This API element is subject to removal in a future version.This field is unused.The current list of registered ContainerListener classes. -
focusListener
Deprecated, for removal: This API element is subject to removal in a future version.This field is unused.The current list of registered FocusListener classes. -
keyListener
Deprecated, for removal: This API element is subject to removal in a future version.This field is unused.The current list of registered KeyListener classes. -
mouseListener
Deprecated, for removal: This API element is subject to removal in a future version.This field is unused.The current list of registered MouseListener classes. -
mouseMotionListener
Deprecated, for removal: This API element is subject to removal in a future version.This field is unused.The current list of registered MouseMotionListener classes. -
windowListener
Deprecated, for removal: This API element is subject to removal in a future version.This field is unused.The current list of registered WindowListener classes. -
actionListener
Deprecated, for removal: This API element is subject to removal in a future version.This field is unused.The current list of registered ActionListener classes. -
adjustmentListener
Deprecated, for removal: This API element is subject to removal in a future version.This field is unused.The current list of registered AdjustmentListener classes. -
itemListener
Deprecated, for removal: This API element is subject to removal in a future version.This field is unused.The current list of registered ItemListener classes. -
textListener
Deprecated, for removal: This API element is subject to removal in a future version.This field is unused.The current list of registered TextListener classes.
-
-
Constructor Details
-
AWTEventMonitor
public AWTEventMonitor()
-
-
Method Details
-
getComponentWithFocus
Returns the component that currently has keyboard focus. The return value can be null.- Returns:
- the component that has keyboard focus
-
addComponentListener
Adds the specified listener to receive allCOMPONENT
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(java.awt.event.ComponentListener)
-
removeComponentListener
Removes the specified listener so it no longer receivesCOMPONENT
events when they occur.- Parameters:
l
- the listener to remove- See Also:
addComponentListener(java.awt.event.ComponentListener)
-
addContainerListener
Adds the specified listener to receive allCONTAINER
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(java.awt.event.ContainerListener)
-
removeContainerListener
Removes the specified listener so it no longer receivesCONTAINER
events when they occur.- Parameters:
l
- the listener to remove- See Also:
addContainerListener(java.awt.event.ContainerListener)
-
addFocusListener
Adds the specified listener to receive allFOCUS
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(java.awt.event.FocusListener)
-
removeFocusListener
Removes the specified listener so it no longer receivesFOCUS
events when they occur.- Parameters:
l
- the listener to remove- See Also:
addFocusListener(java.awt.event.FocusListener)
-
addKeyListener
Adds the specified listener to receive allKEY
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(java.awt.event.KeyListener)
-
removeKeyListener
Removes the specified listener so it no longer receivesKEY
events when they occur.- Parameters:
l
- the listener to remove- See Also:
addKeyListener(java.awt.event.KeyListener)
-
addMouseListener
Adds the specified listener to receive allMOUSE
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(java.awt.event.MouseListener)
-
removeMouseListener
Removes the specified listener so it no longer receivesMOUSE
events when they occur.- Parameters:
l
- the listener to remove- See Also:
addMouseListener(java.awt.event.MouseListener)
-
addMouseMotionListener
Adds the specified listener to receive all mouseMOTION
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(java.awt.event.MouseMotionListener)
-
removeMouseMotionListener
Removes the specified listener so it no longer receivesMOTION
events when they occur.- Parameters:
l
- the listener to remove- See Also:
addMouseMotionListener(java.awt.event.MouseMotionListener)
-
addWindowListener
Adds the specified listener to receive allWINDOW
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(java.awt.event.WindowListener)
-
removeWindowListener
Removes the specified listener so it no longer receivesWINDOW
events when they occur.- Parameters:
l
- the listener to remove- See Also:
addWindowListener(java.awt.event.WindowListener)
-
addActionListener
Adds the specified listener to receive allACTION
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(java.awt.event.ActionListener)
-
removeActionListener
Removes the specified listener so it no longer receivesACTION
events when they occur.- Parameters:
l
- the listener to remove- See Also:
addActionListener(java.awt.event.ActionListener)
-
addAdjustmentListener
Adds the specified listener to receive allADJUSTMENT
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(java.awt.event.AdjustmentListener)
-
removeAdjustmentListener
Removes the specified listener so it no longer receivesADJUSTMENT
events when they occur.- Parameters:
l
- the listener to remove- See Also:
addAdjustmentListener(java.awt.event.AdjustmentListener)
-
addItemListener
Adds the specified listener to receive allITEM
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(java.awt.event.ItemListener)
-
removeItemListener
Removes the specified listener so it no longer receivesITEM
events when they occur.- Parameters:
l
- the listener to remove- See Also:
addItemListener(java.awt.event.ItemListener)
-
addTextListener
Adds the specified listener to receive allTEXT
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(java.awt.event.TextListener)
-
removeTextListener
Removes the specified listener so it no longer receivesTEXT
events when they occur.- Parameters:
l
- the listener to remove- See Also:
addTextListener(java.awt.event.TextListener)
-