Package org.apache.wiki.api.events
Interface CustomWikiEventListener<T>
-
- Type Parameters:
T- the type of the events' source.
- All Superinterfaces:
java.util.EventListener,Initializable,WikiEventListener
public interface CustomWikiEventListener<T> extends WikiEventListener, Initializable
-
-
Field Summary
Fields Modifier and Type Field Description static java.util.List<CustomWikiEventListener<?>>LISTENERSWikiEventListeners are stored on aList< WeaKReference >so we use this List to strong reference custom event listeners.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tclient()Returns the object of the events' source.-
Methods inherited from interface org.apache.wiki.api.engine.Initializable
initialize
-
Methods inherited from interface org.apache.wiki.event.WikiEventListener
actionPerformed
-
-
-
-
Field Detail
-
LISTENERS
static final java.util.List<CustomWikiEventListener<?>> LISTENERS
WikiEventListeners are stored on aList< WeaKReference >so we use this List to strong reference custom event listeners.
-
-
Method Detail
-
client
T client()
Returns the object of the events' source. Typically, it will be obtained on theInitializable.initialize(Engine, Properties)method, and returned here.- Returns:
- the object of the events' source.
-
-