Uses of Class
edu.uci.isr.yancees.GenericEvent

Packages that use GenericEvent
edu.uci.isr.yancees   
edu.uci.isr.yancees.core   
edu.uci.isr.yancees.plugin   
 

Uses of GenericEvent in edu.uci.isr.yancees
 

Subclasses of GenericEvent in edu.uci.isr.yancees
 class YanceesEvent
           
 

Methods in edu.uci.isr.yancees that return GenericEvent
static GenericEvent YanceesFacade.parseEvent(java.io.File eventFile)
          Allows users to easity parse their XML events before sending to the APIs
 

Uses of GenericEvent in edu.uci.isr.yancees.core
 

Methods in edu.uci.isr.yancees.core with parameters of type GenericEvent
 void ParserListenerInterface.receiveParserNotification(GenericEvent evt)
           
 void ParserListenerInterface.receiveParserNotification(GenericEvent[] evtList)
           
 

Uses of GenericEvent in edu.uci.isr.yancees.plugin
 

Methods in edu.uci.isr.yancees.plugin that return GenericEvent
 GenericEvent OrderedEventBuffer.BufferRecord.getNotification()
           
 

Methods in edu.uci.isr.yancees.plugin with parameters of type GenericEvent
 void OrderedEventBuffer.addPluginNotification(GenericEvent evt, PluginInterface source)
           
abstract  void AbstractSharedPlugin.receivePluginNotification(GenericEvent evt, PluginInterface source)
           
abstract  void AbstractSharedPlugin.receivePluginNotification(GenericEvent[] evtList, PluginInterface source)
           
 void AbstractOrderedPlugin.receivePluginNotification(GenericEvent evt, PluginInterface source)
          This mehod now bufferizes the events received, rearranging them according to the order they are published in the notification server, removing repetitions.
 void AbstractOrderedPlugin.receivePluginNotification(GenericEvent[] evtList, PluginInterface source)
          This mehod now bufferizes the event pattern received, rearranging it according to the order they are published in the notification server, removing repetitions.
abstract  void AbstractOrderedPlugin.receiveOrderedPluginNotification(GenericEvent evt, PluginInterface source)
          This method allows the subclass to receive ordered events The events are ordered according to the time they arrive in the server Repeated events, with same Id, are also discarded, ma here.
 

Constructors in edu.uci.isr.yancees.plugin with parameters of type GenericEvent
OrderedEventBuffer.BufferRecord(GenericEvent evt, PluginInterface src)