Uses of Class
es.ucm.look.data.EntityData

Packages that use EntityData
es.ucm.look.data   
es.ucm.look.data.interfaces   
es.ucm.look.data.local   
es.ucm.look.data.local.contentprovider   
es.ucm.look.data.remote   
 

Uses of EntityData in es.ucm.look.data
 

Methods in es.ucm.look.data that return EntityData
 EntityData WorldEntity.getData()
          Returns entity's data
 

Methods in es.ucm.look.data with parameters of type EntityData
 WorldEntity WorldEntityFactory.createWorldEntity(EntityData data)
          Creates a world entity for the given data
 

Constructors in es.ucm.look.data with parameters of type EntityData
WorldEntity(EntityData data)
           
 

Uses of EntityData in es.ucm.look.data.interfaces
 

Methods in es.ucm.look.data.interfaces that return types with arguments of type EntityData
 java.util.List<EntityData> DataGetter.getElementsUpdated(float x, float y, float z, float radius, java.util.Date date)
          Returns all elements near the given point with the given radius that changed since last update
 

Methods in es.ucm.look.data.interfaces with parameters of type EntityData
 void DataSetter.addEntity(EntityData data)
          Adds an entity to the world
 void DataSetter.updatePosition(EntityData data, float x, float y, float z)
          Modifies the position for an entity
 void DataSetter.updateProperty(EntityData data, java.lang.String property, java.lang.String newValue)
          Updates the value from a entity data property
 

Uses of EntityData in es.ucm.look.data.local
 

Methods in es.ucm.look.data.local that return types with arguments of type EntityData
 java.util.List<EntityData> DBDataHandler.getElementsUpdated(float x, float y, float z, float radius, java.util.Date date)
           
 java.util.List<EntityData> BasicDataHandler.getElementsUpdated(float x, float y, float z, float radius, java.util.Date date)
           
 

Methods in es.ucm.look.data.local with parameters of type EntityData
 void DBDataHandler.addEntity(EntityData data)
           
 void BasicDataHandler.addEntity(EntityData data)
           
 void DBDataHandler.updatePosition(EntityData data, float x, float y, float z)
           
 void BasicDataHandler.updatePosition(EntityData data, float x, float y, float z)
           
 void DBDataHandler.updateProperty(EntityData data, java.lang.String property, java.lang.String newValue)
           
 void BasicDataHandler.updateProperty(EntityData data, java.lang.String property, java.lang.String newValue)
           
 

Uses of EntityData in es.ucm.look.data.local.contentprovider
 

Methods in es.ucm.look.data.local.contentprovider that return types with arguments of type EntityData
 java.util.List<EntityData> LookContentProvider.getElementsUpdated(float x, float y, float z, float radius, java.util.Date date)
           
 

Methods in es.ucm.look.data.local.contentprovider with parameters of type EntityData
 void LookContentProvider.addEntity(EntityData data)
           
 void LookContentProvider.updatePosition(EntityData data, float x, float y, float z)
           
 void LookContentProvider.updateProperty(EntityData data, java.lang.String propertyName, java.lang.String propertyValue)
           
 

Uses of EntityData in es.ucm.look.data.remote
 

Methods in es.ucm.look.data.remote that return types with arguments of type EntityData
 java.util.List<EntityData> RemoteDBHandler.getElementsUpdated(float x, float y, float z, float radius, java.util.Date date)
           
 

Methods in es.ucm.look.data.remote with parameters of type EntityData
 void RemoteDBHandler.addEntity(EntityData data)
           
 void RemoteDBHandler.updatePosition(EntityData data, float x, float y, float z)
           
 void RemoteDBHandler.updateProperty(EntityData data, java.lang.String property, java.lang.String newValue)