Uses of Interface
org.commonreality.object.manager.event.IObjectListener

Packages that use IObjectListener
org.commonreality.efferent.event   
org.commonreality.object.manager   
org.commonreality.object.manager.event   
org.commonreality.object.manager.impl   
org.commonreality.sensors.aural   
org.commonreality.sensors.handlers   
org.commonreality.sensors.xml.processor   
 

Uses of IObjectListener in org.commonreality.efferent.event
 

Subinterfaces of IObjectListener in org.commonreality.efferent.event
 interface IEfferentCommandListener
           
 

Uses of IObjectListener in org.commonreality.object.manager
 

Classes in org.commonreality.object.manager with type parameters of type IObjectListener
 interface IMutableObjectManager<O extends ISimulationObject,L extends IObjectListener<O>>
          The mutable object manager extends the IObjectManager to support the adding, removing, and updating of simulation objects.
 interface IObjectManager<O extends ISimulationObject,L extends IObjectListener<O>>
          An object manager allows a set of simulation objects to be tracked and events fired when they are changed.
 interface IRequestableObjectManager<O extends ISimulationObject,L extends IObjectListener<O>>
          The requestable object manager is the only object manager that is able to create new objects.
 

Uses of IObjectListener in org.commonreality.object.manager.event
 

Classes in org.commonreality.object.manager.event with type parameters of type IObjectListener
 interface IObjectEvent<O extends ISimulationObject,L extends IObjectListener<O>>
           
 class ObjectEvent<O extends ISimulationObject,L extends IObjectListener<O>>
           
 

Subinterfaces of IObjectListener in org.commonreality.object.manager.event
 interface IAfferentListener
           
 interface IAgentListener
           
 interface IEfferentListener
           
 interface IRealObjectListener
           
 interface ISensorListener
           
 

Uses of IObjectListener in org.commonreality.object.manager.impl
 

Classes in org.commonreality.object.manager.impl with type parameters of type IObjectListener
 class GeneralObjectManager<O extends ISimulationObject,L extends IObjectListener<O>>
          Handles the adding, updating, and removal of a specific type of simulation object - it also deals with the listeners.
 class SensoryObjectManager<O extends ISensoryObject,L extends IObjectListener<O>>
           
 

Uses of IObjectListener in org.commonreality.sensors.aural
 

Classes in org.commonreality.sensors.aural that implement IObjectListener
 class GeneralAuralProcessor
          the general aural processor is a component that monitors all the realobjects looking for anything that is audible.
 

Uses of IObjectListener in org.commonreality.sensors.handlers
 

Classes in org.commonreality.sensors.handlers that implement IObjectListener
 class EfferentCommandHandler
          general handler to deal with IEfferentCommands.
 

Uses of IObjectListener in org.commonreality.sensors.xml.processor
 

Classes in org.commonreality.sensors.xml.processor with type parameters of type IObjectListener
 class AbstractProcessor<O extends ISimulationObject,L extends IObjectListener<O>>