Uses of Interface
cz.cuni.amis.pogamut.base.communication.worldview.IWorldView

Packages that use IWorldView
cz.cuni.amis.pogamut.base.agent   
cz.cuni.amis.pogamut.base.agent.impl   
cz.cuni.amis.pogamut.base.agent.jmx.proxy   
cz.cuni.amis.pogamut.base.agent.module   
cz.cuni.amis.pogamut.base.communication.worldview   
cz.cuni.amis.pogamut.base.communication.worldview.event   
cz.cuni.amis.pogamut.base.communication.worldview.impl   
cz.cuni.amis.pogamut.base.communication.worldview.listener.annotation   
cz.cuni.amis.pogamut.base.communication.worldview.object   
cz.cuni.amis.pogamut.base.communication.worldview.react   
cz.cuni.amis.pogamut.base.server   
cz.cuni.amis.pogamut.base.utils.collections.adapters   
cz.cuni.amis.pogamut.base3d   
cz.cuni.amis.pogamut.base3d.worldview   
cz.cuni.amis.pogamut.base3d.worldview.impl   
cz.cuni.amis.pogamut.multi.communication.worldview.impl   
 

Uses of IWorldView in cz.cuni.amis.pogamut.base.agent
 

Methods in cz.cuni.amis.pogamut.base.agent that return IWorldView
 IWorldView IObservingAgent.getWorldView()
           
 

Uses of IWorldView in cz.cuni.amis.pogamut.base.agent.impl
 

Classes in cz.cuni.amis.pogamut.base.agent.impl with type parameters of type IWorldView
 class AbstractEmbodiedAgent<WORLD_VIEW extends IWorldView,ACT extends IAct>
           
 class AbstractGhostAgent<WORLD_VIEW extends IWorldView,ACT extends IAct>
          Next step to embodied agents are those without the physical body but with the ability to act inside the environment.
 class AbstractObservingAgent<WORLD_VIEW extends IWorldView>
          The main difference between AbstractAgent and AbstractObservingAgent is that this one has a world to observe.
 

Uses of IWorldView in cz.cuni.amis.pogamut.base.agent.jmx.proxy
 

Methods in cz.cuni.amis.pogamut.base.agent.jmx.proxy that return IWorldView
 IWorldView GhostAgentJMXProxy.getWorldView()
           
 

Uses of IWorldView in cz.cuni.amis.pogamut.base.agent.module
 

Fields in cz.cuni.amis.pogamut.base.agent.module declared as IWorldView
protected  IWorldView SensorModule.worldView
           
protected  IWorldView SensomotoricModule.worldView
           
 

Uses of IWorldView in cz.cuni.amis.pogamut.base.communication.worldview
 

Subinterfaces of IWorldView in cz.cuni.amis.pogamut.base.communication.worldview
 interface ILockableWorldView
           
 

Uses of IWorldView in cz.cuni.amis.pogamut.base.communication.worldview.event
 

Constructors in cz.cuni.amis.pogamut.base.communication.worldview.event with parameters of type IWorldView
WorldEventFuture(IWorldView worldView, Class<T> eventClass)
          Creates new instance of future that waits for the event of given class.
 

Uses of IWorldView in cz.cuni.amis.pogamut.base.communication.worldview.impl
 

Classes in cz.cuni.amis.pogamut.base.communication.worldview.impl that implement IWorldView
 class AbstractWorldView
          Abstract world view is implementing some of the tedious things every WorldView will surely implement -> maps for holding the references to all world objects either according to their id and type (class).
 class EventDrivenWorldView
          Schema: "real" world | ... some communication ... | IWorldViewEventInput - EventDrivenWorldView | Agent (most probably listening for events) EventDrivenWorldView assumes that everything is driven by the events that are received through IWorldChangeEventInput - those events surely must contains "new object appears event", "object update event", "object disappear event".
 class LockableWorldView
          WorldView that can be locked.
 

Uses of IWorldView in cz.cuni.amis.pogamut.base.communication.worldview.listener.annotation
 

Constructors in cz.cuni.amis.pogamut.base.communication.worldview.listener.annotation with parameters of type IWorldView
AnnotationListenerRegistrator(Object obj, IWorldView worldView, Logger log)
           
 

Uses of IWorldView in cz.cuni.amis.pogamut.base.communication.worldview.object
 

Constructors in cz.cuni.amis.pogamut.base.communication.worldview.object with parameters of type IWorldView
WorldObjectFuture(IWorldView worldView, Class<T> objectClass)
          Creates new instance of future that waits for first appearance of WorldObject of given class.
WorldObjectFuture(IWorldView worldView, String id, Class<T> objectClass)
          Creates new instance of future that waits for first appearance of WorldObject of given id.
 

Uses of IWorldView in cz.cuni.amis.pogamut.base.communication.worldview.react
 

Fields in cz.cuni.amis.pogamut.base.communication.worldview.react declared as IWorldView
protected  IWorldView ObjectEventReact.reactWorldView
           
protected  IWorldView EventReact.reactWorldView
           
 

Constructors in cz.cuni.amis.pogamut.base.communication.worldview.react with parameters of type IWorldView
EventReact(Class<EVENT> eventClass, IWorldView worldView)
           
EventReactOnce(Class<EVENT> eventClass, IWorldView worldView)
           
ObjectEventReact(Class<?> objectClass, Class<?> eventClass, IWorldView worldView)
           
ObjectEventReact(Class<?> objectClass, IWorldView worldView)
           
ObjectEventReact(WorldObjectId objectId, Class<?> eventClass, IWorldView worldView)
           
ObjectEventReact(WorldObjectId objectId, IWorldView worldView)
           
ObjectEventReactOnce(Class<?> objectClass, Class<?> eventClass, IWorldView worldView)
           
ObjectEventReactOnce(Class<?> objectClass, IWorldView worldView)
           
ObjectEventReactOnce(WorldObjectId objectId, Class<?> eventClass, IWorldView worldView)
           
ObjectEventReactOnce(WorldObjectId objectId, IWorldView worldView)
           
ObjectReact(Class<?> objectClass, Class<?> eventClass, IWorldView worldView)
           
ObjectReact(Class<?> objectClass, IWorldView worldView)
           
ObjectReact(WorldObjectId objectId, Class<?> eventClass, IWorldView worldView)
           
ObjectReact(WorldObjectId objectId, IWorldView worldView)
           
ObjectReactOnce(Class<?> objectClass, Class<?> eventClass, IWorldView worldView)
           
ObjectReactOnce(Class<?> objectClass, IWorldView worldView)
           
ObjectReactOnce(WorldObjectId objectId, Class<?> eventClass, IWorldView worldView)
           
ObjectReactOnce(WorldObjectId objectId, IWorldView worldView)
           
 

Uses of IWorldView in cz.cuni.amis.pogamut.base.server
 

Classes in cz.cuni.amis.pogamut.base.server with type parameters of type IWorldView
 class AbstractWorldServer<WORLD_VIEW extends IWorldView,ACT extends IAct,A extends IAgent>
           
 

Uses of IWorldView in cz.cuni.amis.pogamut.base.utils.collections.adapters
 

Constructors in cz.cuni.amis.pogamut.base.utils.collections.adapters with parameters of type IWorldView
WVObjectsSetAdapter(Class<T> objectClass, IWorldView worldView)
           
WVVisibleObjectsSetAdapter(Class<T> objectClass, IWorldView worldView)
           
 

Uses of IWorldView in cz.cuni.amis.pogamut.base3d
 

Subinterfaces of IWorldView in cz.cuni.amis.pogamut.base3d
 interface ILockableVisionWorldView
           
 

Uses of IWorldView in cz.cuni.amis.pogamut.base3d.worldview
 

Subinterfaces of IWorldView in cz.cuni.amis.pogamut.base3d.worldview
 interface IVisionWorldView
           
 

Constructors in cz.cuni.amis.pogamut.base3d.worldview with parameters of type IWorldView
Vision(IWorldView worldView, IAgentLogger logger)
           
 

Uses of IWorldView in cz.cuni.amis.pogamut.base3d.worldview.impl
 

Classes in cz.cuni.amis.pogamut.base3d.worldview.impl that implement IWorldView
 class BatchAwareWorldView
          World view that is updated by protocol utilizing concept of batches.
 class LockableBatchAwareWorldView
           
 class SyncLockableBatchAwareWorldView
           
 class VisionWorldView
           
 

Uses of IWorldView in cz.cuni.amis.pogamut.multi.communication.worldview.impl
 

Classes in cz.cuni.amis.pogamut.multi.communication.worldview.impl that implement IWorldView
 class LocalWorldViewAdapter
          This class serves as an adapter for ILocalWorldView to satisfy the IWorldView interface, all methods of this worldView only call the appropriate methods on the backing localWorldView
 



Copyright © 2015 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All Rights Reserved.