Package net.ontopia.topicmaps.impl.utils
Interface EventManagerIF
-
- All Superinterfaces:
EventListenerIF
- All Known Implementing Classes:
ObjectTreeManager
,RDBMSTopicMapTransaction
,TopicMap
,TopicModificationManager
public interface EventManagerIF extends EventListenerIF
INTERNAL: An event manager listener interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addListener(EventListenerIF listener, String event)
INTERNAL: Register the listener as a listener for the event.void
removeListener(EventListenerIF listener, String event)
INTERNAL: Unregister the listener as a listener for the event.-
Methods inherited from interface net.ontopia.topicmaps.impl.utils.EventListenerIF
processEvent
-
-
-
-
Method Detail
-
addListener
void addListener(EventListenerIF listener, String event)
INTERNAL: Register the listener as a listener for the event.
-
removeListener
void removeListener(EventListenerIF listener, String event)
INTERNAL: Unregister the listener as a listener for the event.
-
-