Class Overview
Utility class for operating on event listeners.
Summary
Public Methods |
static
boolean
|
has(Class<?> listenerClass, Class<?> eventClass)
Returns true iff the listener class has a handler for the event class.
|
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
Public Constructors
Public Methods
public
static
boolean
has
(Class<?> listenerClass, Class<?> eventClass)
Returns true iff the listener class has a handler for the event class.
Parameters
listenerClass
| the Class of the listener |
eventClass
| the Class of the event |
Returns
- a boolean indicating whether the listener class has a handler for the event class