Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

Copyright © 2006 Sun Microsystems, Inc. All rights reserved.

JSR 217 (Maintenance Release)

Uses of Interface
java.util.EventListener

Packages that use EventListener
java.awt Contains all of the classes for creating user interfaces and for painting graphics and images. 
java.awt.event Provides interfaces and classes for dealing with different types of events fired by AWT components. 
java.beans Contains classes for run-time Java Beans support. 
java.util Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array). 
 

Uses of EventListener in java.awt
 

Classes in java.awt that implement EventListener
 class AWTEventMulticaster
          A class which implements efficient and thread-safe multi-cast event dispatching for the AWT events defined in the java.awt.event package.
 

Fields in java.awt declared as EventListener
protected  EventListener AWTEventMulticaster.a
           
protected  EventListener AWTEventMulticaster.b
           
 

Methods in java.awt that return EventListener
protected  EventListener AWTEventMulticaster.remove(EventListener oldl)
          Removes a listener from this multicaster and returns the resulting multicast listener.
protected static EventListener AWTEventMulticaster.addInternal(EventListener a, EventListener b)
          Returns the resulting multicast listener from adding listener-a and listener-b together.
protected static EventListener AWTEventMulticaster.removeInternal(EventListener l, EventListener oldl)
          Returns the resulting multicast listener after removing the old listener from listener-l.
static EventListener[] AWTEventMulticaster.getListeners(EventListener l, Class listenerType)
          Returns an array of all the objects chained as FooListeners by the specified java.util.EventListener.
 

Methods in java.awt with parameters of type EventListener
protected  EventListener AWTEventMulticaster.remove(EventListener oldl)
          Removes a listener from this multicaster and returns the resulting multicast listener.
protected static EventListener AWTEventMulticaster.addInternal(EventListener a, EventListener b)
          Returns the resulting multicast listener from adding listener-a and listener-b together.
protected static EventListener AWTEventMulticaster.removeInternal(EventListener l, EventListener oldl)
          Returns the resulting multicast listener after removing the old listener from listener-l.
protected static void AWTEventMulticaster.save(ObjectOutputStream s, String k, EventListener l)
           
static EventListener[] AWTEventMulticaster.getListeners(EventListener l, Class listenerType)
          Returns an array of all the objects chained as FooListeners by the specified java.util.EventListener.
 

Constructors in java.awt with parameters of type EventListener
AWTEventMulticaster(EventListener a, EventListener b)
          Creates an event multicaster instance which chains listener-a with listener-b.
 

Uses of EventListener in java.awt.event
 

Subinterfaces of EventListener in java.awt.event
 interface ActionListener
          The listener interface for receiving action events.
 interface AdjustmentListener
          The listener interface for receiving adjustment events.
 interface AWTEventListener
          The listener interface for receiving notification of events dispatched to objects that are instances of Component or MenuComponent or their subclasses.
 interface ComponentListener
          The listener interface for receiving component events.
 interface ContainerListener
          The listener interface for receiving container events.
 interface FocusListener
          The listener interface for receiving keyboard focus events on a component.
 interface InputMethodListener
          The listener interface for receiving input method events.
 interface ItemListener
          The listener interface for receiving item events.
 interface KeyListener
          The listener interface for receiving keyboard events (keystrokes).
 interface MouseListener
          The listener interface for receiving "interesting" mouse events (press, release, click, enter, and exit) on a component.
 interface MouseMotionListener
          The listener interface for receiving mouse motion events on a component.
 interface MouseWheelListener
          The listener interface for receiving mouse wheel events on a component.
 interface TextListener
          The listener interface for receiving text events.
 interface WindowFocusListener
          The listener interface for receiving WindowEvents, including WINDOW_GAINED_FOCUS and WINDOW_LOST_FOCUS events.
 interface WindowListener
          The listener interface for receiving window events.
 

Classes in java.awt.event that implement EventListener
 class AWTEventListenerProxy
          A class which extends the EventListenerProxy, specifically for adding an AWTEventListener for a specific event mask.
 class ComponentAdapter
          An abstract adapter class for receiving component events.
 class ContainerAdapter
          An abstract adapter class for receiving container events.
 class FocusAdapter
          An abstract adapter class for receiving keyboard focus events.
 class KeyAdapter
          An abstract adapter class for receiving keyboard events.
 class MouseAdapter
          An abstract adapter class for receiving mouse events.
 class MouseMotionAdapter
          An abstract adapter class for receiving mouse motion events.
 class WindowAdapter
          An abstract adapter class for receiving window events.
 

Uses of EventListener in java.beans
 

Subinterfaces of EventListener in java.beans
 interface PropertyChangeListener
          A "PropertyChange" event gets fired whenever a bean changes a "bound" property.
 interface VetoableChangeListener
          A VetoableChange event gets fired whenever a bean changes a "constrained" property.
 

Uses of EventListener in java.util
 

Classes in java.util that implement EventListener
 class EventListenerProxy
          An abstract wrapper class for an EventListener class which associates a set of additional parameters with the listener.
 

Methods in java.util that return EventListener
 EventListener EventListenerProxy.getListener()
           
 

Constructors in java.util with parameters of type EventListener
EventListenerProxy(EventListener listener)
           
 


JSR 217 (Maintenance Release)

Copyright © 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

For more information, please consult the JSR 217 specification.