Package net.ontopia.topicmaps.impl.utils
Class BasicIndex.EventHandler<K,V>
- java.lang.Object
-
- net.ontopia.topicmaps.impl.utils.BasicIndex.EventHandler<K,V>
-
- All Implemented Interfaces:
EventListenerIF<K,V>
- Enclosing class:
- BasicIndex
public abstract class BasicIndex.EventHandler<K,V> extends Object implements EventListenerIF<K,V>
-
-
Constructor Summary
Constructors Constructor Description EventHandler()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected void
addEvent(Object object, String event, Object value)
abstract void
processEvent(K object, String event, V new_value, V old_value)
INTERNAL: A method that receives notification when an event has been triggered.protected void
removeEvent(Object object, String event, Object value)
-
-
-
Method Detail
-
processEvent
public abstract void processEvent(K object, String event, V new_value, V old_value)
Description copied from interface:EventListenerIF
INTERNAL: A method that receives notification when an event has been triggered.- Specified by:
processEvent
in interfaceEventListenerIF<K,V>
-
-