Uses of Interface
org.commonreality.sensors.base.IObjectKey

Packages that use IObjectKey
org.commonreality.sensors.base   
org.commonreality.sensors.base.impl   
 

Uses of IObjectKey in org.commonreality.sensors.base
 

Classes in org.commonreality.sensors.base with type parameters of type IObjectKey
 interface IObjectCreator<K extends IObjectKey>
          Coordinates with PerceptManager to create IObjectKeys and their associated ISensoryObjects (typically a IAfferentObject).
 interface IObjectProcessor<K extends IObjectKey>
          processes an existing object.
 

Methods in org.commonreality.sensors.base that return types with arguments of type IObjectKey
 IObjectCreator<? extends IObjectKey> IObjectKey.getCreator()
           
 

Methods in org.commonreality.sensors.base with parameters of type IObjectKey
 boolean IObjectCreator.canDelete(IObjectKey objectKey)
          test to see if the object key can be destroyed, removing the percept entirely.
 boolean IObjectCreator.deleteKey(IObjectKey objectKey)
          delete the key and disconnect any listeners.
 

Uses of IObjectKey in org.commonreality.sensors.base.impl
 

Classes in org.commonreality.sensors.base.impl that implement IObjectKey
 class DefaultObjectKey
           
 

Methods in org.commonreality.sensors.base.impl that return types with arguments of type IObjectKey
 IObjectCreator<? extends IObjectKey> DefaultObjectKey.getCreator()
           
 

Methods in org.commonreality.sensors.base.impl with parameters of type IObjectKey
 boolean AbstractObjectCreator.canDelete(IObjectKey objectKey)
           
 boolean AbstractObjectCreator.deleteKey(IObjectKey objectKey)
          delete the key and disconnect any listeners.
 

Constructor parameters in org.commonreality.sensors.base.impl with type arguments of type IObjectKey
DefaultObjectKey(java.lang.Object object, IObjectCreator<? extends IObjectKey> creator)