- java.lang.Object
-
- javax.swing.event.EventListenerList
-
- All Implemented Interfaces:
- Serializable
public class EventListenerList extends Object implements Serializable
A class that holds a list of EventListeners. A single instance can be used to hold all listeners (of all types) for the instance using the list. It is the responsiblity of the class using the EventListenerList to provide type-safe API (preferably conforming to the JavaBeans spec) and methods which dispatch event notification methods to appropriate Event Listeners on the list. The main benefits that this class provides are that it is relatively cheap in the case of no listeners, and it provides serialization for event-listener lists in a single place, as well as a degree of MT safety (when used correctly). Usage example: Say one is defining a class that sends out FooEvents, and one wants to allow users of the class to register FooListeners and receive notification when FooEvents occur. The following should be added to the class definition:EventListenerList listenerList = new EventListenerList(); FooEvent fooEvent = null; public void addFooListener(FooListener l) { listenerList.add(FooListener.class, l); } public void removeFooListener(FooListener l) { listenerList.remove(FooListener.class, l); } // Notify all listeners that have registered interest for // notification on this event type. The event instance // is lazily created using the parameters passed into // the fire method. protected void fireFooXXX() { // Guaranteed to return a non-null array Object[] listeners = listenerList.getListenerList(); // Process the listeners last to first, notifying // those that are interested in this event for (int i = listeners.length-2; i>=0; i-=2) { if (listeners[i]==FooListener.class) { // Lazily create the event: if (fooEvent == null) fooEvent = new FooEvent(this); ((FooListener)listeners[i+1]).fooXXX(fooEvent); } } }
foo should be changed to the appropriate name, and fireFooXxx to the appropriate method name. One fire method should exist for each notification method in the FooListener interface.Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeansTM has been added to the
java.beans
package. Please seeXMLEncoder
.
-
-
Field Summary
Fields Modifier and Type Field and Description protected Object[]
listenerList
-
Constructor Summary
Constructors Constructor and Description EventListenerList()
-
Method Summary
Methods Modifier and Type Method and Description <T extends EventListener>
voidadd(Class<T> t, T l)
Adds the listener as a listener of the specified type.int
getListenerCount()
Returns the total number of listeners for this listener list.int
getListenerCount(Class<?> t)
Returns the total number of listeners of the supplied type for this listener list.Object[]
getListenerList()
Passes back the event listener list as an array of ListenerType-listener pairs.<T extends EventListener>
T[]getListeners(Class<T> t)
Return an array of all the listeners of the given type.<T extends EventListener>
voidremove(Class<T> t, T l)
Removes the listener as a listener of the specified type.String
toString()
Returns a string representation of the EventListenerList.
-
-
-
Field Detail
-
listenerList
protected transient Object[] listenerList
-
-
Method Detail
-
getListenerList
public Object[] getListenerList()
Passes back the event listener list as an array of ListenerType-listener pairs. Note that for performance reasons, this implementation passes back the actual data structure in which the listener data is stored internally! This method is guaranteed to pass back a non-null array, so that no null-checking is required in fire methods. A zero-length array of Object should be returned if there are currently no listeners. WARNING!!! Absolutely NO modification of the data contained in this array should be made -- if any such manipulation is necessary, it should be done on a copy of the array returned rather than the array itself.
-
getListeners
public <T extends EventListener> T[] getListeners(Class<T> t)
Return an array of all the listeners of the given type.- Returns:
- all of the listeners of the specified type.
- Throws:
ClassCastException
- if the supplied class is not assignable to EventListener- Since:
- 1.3
-
getListenerCount
public int getListenerCount()
Returns the total number of listeners for this listener list.
-
getListenerCount
public int getListenerCount(Class<?> t)
Returns the total number of listeners of the supplied type for this listener list.
-
add
public <T extends EventListener> void add(Class<T> t, T l)
Adds the listener as a listener of the specified type.- Parameters:
t
- the type of the listener to be addedl
- the listener to be added
-
remove
public <T extends EventListener> void remove(Class<T> t, T l)
Removes the listener as a listener of the specified type.- Parameters:
t
- the type of the listener to be removedl
- the listener to be removed
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
21/11/2024 22:15:03 Cette version de la page est en cache (à la date du 21/11/2024 22:15:03) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 31/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/swing/event/eventlistenerlist.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.