|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.jdesktop.swingx.event.EventListenerMap
public class EventListenerMap
Intended to be a replacement for EventListenerList.
EventListenerList| Constructor Summary | |
|---|---|
EventListenerMap()
|
|
| Method Summary | ||
|---|---|---|
|
add(java.lang.Class<T> clazz,
T listener)
Adds the listener as a listener of the specified type. |
|
int |
getListenerCount()
Returns the total number of listeners of the supplied type for this listener list. |
|
|
getListenerCount(java.lang.Class<T> clazz)
Returns the total number of listeners for this listener type. |
|
java.util.List<java.util.EventListener> |
getListeners()
Returns a list containing all of the listeners managed by this EventListenerMap. |
|
|
getListeners(java.lang.Class<T> clazz)
Return a list of all the listeners of the given type. |
|
|
remove(java.lang.Class<T> clazz,
T listener)
Removes the listener as a listener of the specified type. |
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public EventListenerMap()
| Method Detail |
|---|
public java.util.List<java.util.EventListener> getListeners()
EventListenerMap.
public <T extends java.util.EventListener> java.util.List<T> getListeners(java.lang.Class<T> clazz)
public int getListenerCount()
public <T extends java.util.EventListener> int getListenerCount(java.lang.Class<T> clazz)
public <T extends java.util.EventListener> void add(java.lang.Class<T> clazz,
T listener)
T - the type of the listener to be addedclazz - the class type to addl - the listener to be added
public <T extends java.util.EventListener> void remove(java.lang.Class<T> clazz,
T listener)
T - the type of the listener to removeclazz - the class type to removel - the listener to remove
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||