Uses of Interface
java.awt.event.AWTEventListener
Package
Description
Contains all of the classes for creating user interfaces and for painting
graphics and images.
Provides interfaces and classes for dealing with different types of events
fired by AWT components.
-
Uses of AWTEventListener in java.awt
Modifier and TypeMethodDescriptionToolkit.getAWTEventListeners()
Returns an array of all theAWTEventListener
s registered on this toolkit.Toolkit.getAWTEventListeners
(long eventMask) Returns an array of all theAWTEventListener
s registered on this toolkit which listen to all of the event types specified in theeventMask
argument.Modifier and TypeMethodDescriptionvoid
Toolkit.addAWTEventListener
(AWTEventListener listener, long eventMask) Adds an AWTEventListener to receive all AWTEvents dispatched system-wide that conform to the giveneventMask
.void
Toolkit.removeAWTEventListener
(AWTEventListener listener) Removes an AWTEventListener from receiving dispatched AWTEvents. -
Uses of AWTEventListener in java.awt.event
Modifier and TypeClassDescriptionclass
A class which extends theEventListenerProxy
specifically for adding anAWTEventListener
for a specific event mask.ModifierConstructorDescriptionAWTEventListenerProxy
(long eventMask, AWTEventListener listener) Constructor which binds theAWTEventListener
to a specific event mask.