TypedEventListener

@since 1.3

interface TypedEventListener : EventListener {}

Members

Functions

getEventType
TypeInfo_Class getEventType()
Undocumented in source.

Inherited Members

From EventListener

accepts
bool accepts(Object event)

Returns {@code true} if the listener instance can process the specified event object, {@code false} otherwise. @param event the event object to test @return {@code true} if the listener instance can process the specified event object, {@code false} otherwise.

onEvent
void onEvent(Object event)

Handles the specified event. Again, as this interface is an implementation concept, implementations of this method will likely dispatch the event to a 'real' processor (e.g. method).

Meta