Uses of Interface
java.awt.event.AWTEventListener
Packages that use 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
Methods in java.awt that return AWTEventListenerModifier 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.Methods in java.awt with parameters of type AWTEventListenerModifier 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
Classes in java.awt.event that implement AWTEventListenerModifier and TypeClassDescriptionclass
A class which extends theEventListenerProxy
specifically for adding anAWTEventListener
for a specific event mask.Constructors in java.awt.event with parameters of type AWTEventListenerModifierConstructorDescriptionAWTEventListenerProxy
(long eventMask, AWTEventListener listener) Constructor which binds theAWTEventListener
to a specific event mask.