Uses of Interface
org.commonreality.identifier.IIdentifier

Packages that use IIdentifier
org.commonreality.agents   
org.commonreality.efferent.impl   
org.commonreality.identifier   
org.commonreality.identifier.impl   
org.commonreality.message   
org.commonreality.message.command.control   
org.commonreality.message.command.object   
org.commonreality.message.command.time   
org.commonreality.message.impl   
org.commonreality.message.request.connect   
org.commonreality.message.request.object   
org.commonreality.message.request.time   
org.commonreality.modalities.motor   
org.commonreality.modalities.vocal   
org.commonreality.object   
org.commonreality.object.delta   
org.commonreality.object.identifier   
org.commonreality.object.manager   
org.commonreality.object.manager.impl   
org.commonreality.participant.impl   
org.commonreality.reality   
org.commonreality.reality.impl   
org.commonreality.reality.impl.handler   
org.commonreality.sensors   
org.commonreality.sensors.aural   
org.commonreality.sensors.keyboard   
org.commonreality.sensors.prog   
org.commonreality.sensors.swing   
org.commonreality.sensors.swing.component   
org.commonreality.sensors.xml   
org.commonreality.sensors.xml.processor   
 

Uses of IIdentifier in org.commonreality.agents
 

Methods in org.commonreality.agents with parameters of type IIdentifier
 void AbstractAgent.setIdentifier(IIdentifier identifier)
           
 

Uses of IIdentifier in org.commonreality.efferent.impl
 

Methods in org.commonreality.efferent.impl with parameters of type IIdentifier
 void AbstractEfferentCommand.setEfferentIdentifier(IIdentifier identifier)
           
 

Constructors in org.commonreality.efferent.impl with parameters of type IIdentifier
AbstractEfferentCommand(IIdentifier identifier)
           
 

Uses of IIdentifier in org.commonreality.identifier
 

Fields in org.commonreality.identifier declared as IIdentifier
static IIdentifier IIdentifier.ALL
           
 

Methods in org.commonreality.identifier that return IIdentifier
 IIdentifier IIdentifiable.getIdentifier()
           
 IIdentifier IIdentifier.getOwner()
          owner of this identifier
 

Uses of IIdentifier in org.commonreality.identifier.impl
 

Classes in org.commonreality.identifier.impl that implement IIdentifier
 class BasicIdentifier
          basic implementation of an identifier
 

Methods in org.commonreality.identifier.impl that return IIdentifier
 IIdentifier BasicIdentifier.getOwner()
           
 

Constructors in org.commonreality.identifier.impl with parameters of type IIdentifier
BasicIdentifier(java.lang.String name, IIdentifier.Type type, IIdentifier owner)
           
 

Uses of IIdentifier in org.commonreality.message
 

Methods in org.commonreality.message that return IIdentifier
 IIdentifier IMessage.getSource()
          who sent this message?
 

Uses of IIdentifier in org.commonreality.message.command.control
 

Constructors in org.commonreality.message.command.control with parameters of type IIdentifier
ControlAcknowledgement(IIdentifier source, long requestedId, IControlCommand.State state)
           
ControlAcknowledgement(IIdentifier source, long requestedId, java.lang.Throwable thrown)
           
ControlCommand(IIdentifier source, IControlCommand.State state)
           
ControlCommand(IIdentifier source, IControlCommand.State state, java.lang.Object extra)
           
 

Uses of IIdentifier in org.commonreality.message.command.object
 

Methods in org.commonreality.message.command.object that return types with arguments of type IIdentifier
 java.util.Collection<IIdentifier> ObjectCommand.getIdentifiers()
           
 java.util.Collection<IIdentifier> IObjectCommand.getIdentifiers()
           
 

Constructors in org.commonreality.message.command.object with parameters of type IIdentifier
ObjectCommand(IIdentifier source, IObjectCommand.Type type, java.util.Collection<IIdentifier> identifiers)
           
ObjectData(IIdentifier source, java.util.Collection<IObjectDelta> data)
           
 

Constructor parameters in org.commonreality.message.command.object with type arguments of type IIdentifier
ObjectCommand(IIdentifier source, IObjectCommand.Type type, java.util.Collection<IIdentifier> identifiers)
           
 

Uses of IIdentifier in org.commonreality.message.command.time
 

Constructors in org.commonreality.message.command.time with parameters of type IIdentifier
TimeCommand(IIdentifier source, double whatTimeIsIt)
           
 

Uses of IIdentifier in org.commonreality.message.impl
 

Methods in org.commonreality.message.impl that return IIdentifier
 IIdentifier BaseMessage.getSource()
           
 

Constructors in org.commonreality.message.impl with parameters of type IIdentifier
BaseAcknowledgementMessage(IIdentifier source, long requestedId)
           
BaseMessage(IIdentifier source)
           
 

Uses of IIdentifier in org.commonreality.message.request.connect
 

Methods in org.commonreality.message.request.connect that return IIdentifier
 IIdentifier IConnectionAcknowledgement.getAssignedIdentifier()
           
 IIdentifier ConnectionAcknowledgment.getAssignedIdentifier()
           
 

Constructors in org.commonreality.message.request.connect with parameters of type IIdentifier
ConnectionAcknowledgment(IIdentifier source, long requestId, java.lang.String message)
           
ConnectionAcknowledgment(IIdentifier source, long requestId, java.lang.String message, IIdentifier assignedId)
           
 

Uses of IIdentifier in org.commonreality.message.request.object
 

Methods in org.commonreality.message.request.object that return IIdentifier
 IIdentifier ObjectDataRequest.getDestination()
           
 IIdentifier ObjectCommandRequest.getDestination()
           
 IIdentifier IObjectDataRequest.getDestination()
          the destination for this data request (if a sensor is sending data it should be addressed to a specific agent only, or in the case on IRealObject's to ALL
 IIdentifier IObjectCommandRequest.getDestination()
          destination for this message.
 

Methods in org.commonreality.message.request.object that return types with arguments of type IIdentifier
 java.util.Collection<IIdentifier> ObjectCommandRequest.getIdentifiers()
           
 java.util.Collection<IIdentifier> NewIdentifierRequest.getIdentifiers()
           
 java.util.Collection<IIdentifier> NewIdentifierAcknowledgement.getIdentifiers()
           
 java.util.Collection<IIdentifier> IObjectCommandRequest.getIdentifiers()
           
 java.util.Collection<IIdentifier> INewIdentifierRequest.getIdentifiers()
           
 java.util.Collection<IIdentifier> INewIdentifierAcknowledgement.getIdentifiers()
           
 

Constructors in org.commonreality.message.request.object with parameters of type IIdentifier
NewIdentifierAcknowledgement(IIdentifier source, long requestId, java.util.Collection<? extends IIdentifier> identifiers)
           
NewIdentifierRequest(IIdentifier source, java.util.Collection<? extends IIdentifier> names)
           
ObjectCommandRequest(IIdentifier source, IIdentifier destination, IObjectCommand.Type type, java.util.Collection<IIdentifier> identifiers)
           
ObjectDataRequest(IIdentifier source, IIdentifier destination, java.util.Collection<? extends IObjectDelta> data)
           
 

Constructor parameters in org.commonreality.message.request.object with type arguments of type IIdentifier
NewIdentifierAcknowledgement(IIdentifier source, long requestId, java.util.Collection<? extends IIdentifier> identifiers)
           
NewIdentifierRequest(IIdentifier source, java.util.Collection<? extends IIdentifier> names)
           
ObjectCommandRequest(IIdentifier source, IIdentifier destination, IObjectCommand.Type type, java.util.Collection<IIdentifier> identifiers)
           
 

Uses of IIdentifier in org.commonreality.message.request.time
 

Constructors in org.commonreality.message.request.time with parameters of type IIdentifier
RequestTime(IIdentifier source, double whatTimeShouldItBe)
           
 

Uses of IIdentifier in org.commonreality.modalities.motor
 

Methods in org.commonreality.modalities.motor that return IIdentifier
static IIdentifier MotorUtilities.getParentIdentifier(IEfferentObject object)
           
 

Methods in org.commonreality.modalities.motor that return types with arguments of type IIdentifier
static java.util.Collection<IIdentifier> MotorUtilities.getChildIdentifiers(IEfferentObject object)
           
 

Constructors in org.commonreality.modalities.motor with parameters of type IIdentifier
MovementCommand(IIdentifier identifier)
           
MovementCommand(IIdentifier identifier, IIdentifier efferentId)
           
RotateCommand(IIdentifier identifier)
           
RotateCommand(IIdentifier identifier, IIdentifier efferentId)
           
TranslateCommand(IIdentifier identifier)
           
TranslateCommand(IIdentifier identifier, IIdentifier efferentId)
           
 

Uses of IIdentifier in org.commonreality.modalities.vocal
 

Methods in org.commonreality.modalities.vocal that return IIdentifier
static IIdentifier VocalUtilities.getSpeaker(IRealObject realObject)
           
 

Constructors in org.commonreality.modalities.vocal with parameters of type IIdentifier
VocalizationCommand(IIdentifier identifier)
           
VocalizationCommand(IIdentifier identifier, IIdentifier efferentId)
           
 

Uses of IIdentifier in org.commonreality.object
 

Methods in org.commonreality.object that return IIdentifier
 IIdentifier UnknownPropertyNameException.getIdentifier()
           
 

Constructors in org.commonreality.object with parameters of type IIdentifier
UnknownPropertyNameException(IIdentifier id, java.lang.String name)
           
 

Uses of IIdentifier in org.commonreality.object.delta
 

Methods in org.commonreality.object.delta that return IIdentifier
 IIdentifier ObjectDelta.getIdentifier()
           
 IIdentifier DeltaTracker.getIdentifier()
           
 

Constructors in org.commonreality.object.delta with parameters of type IIdentifier
ObjectDelta(IIdentifier identifier, java.util.Map<java.lang.String,java.lang.Object> newValues, java.util.Map<java.lang.String,java.lang.Object> oldValues)
           
 

Uses of IIdentifier in org.commonreality.object.identifier
 

Subinterfaces of IIdentifier in org.commonreality.object.identifier
 interface ISensoryIdentifier
           
 

Classes in org.commonreality.object.identifier that implement IIdentifier
 class BasicSensoryIdentifier
           
 

Methods in org.commonreality.object.identifier that return IIdentifier
 IIdentifier ISensoryIdentifier.getAgent()
           
 IIdentifier BasicSensoryIdentifier.getAgent()
           
 IIdentifier ISensoryIdentifier.getSensor()
           
 IIdentifier BasicSensoryIdentifier.getSensor()
           
 

Constructors in org.commonreality.object.identifier with parameters of type IIdentifier
BasicSensoryIdentifier(java.lang.String name, IIdentifier.Type type, IIdentifier owner, IIdentifier sensor, IIdentifier agent)
           
 

Uses of IIdentifier in org.commonreality.object.manager
 

Methods in org.commonreality.object.manager that return IIdentifier
 IIdentifier IRequestableObjectManager.requestIdentifier(IIdentifier identifier)
           
 

Methods in org.commonreality.object.manager that return types with arguments of type IIdentifier
 java.util.Collection<IIdentifier> IObjectManager.getIdentifiers()
          return all the identifiers of simulation objects that this manager is tracking
 java.util.Collection<IIdentifier> IEfferentObjectManager.getIdentifiersByAgent(IIdentifier agentId)
           
 java.util.Collection<IIdentifier> IAfferentObjectManager.getIdentifiersByAgent(IIdentifier agentId)
           
 java.util.Collection<IIdentifier> IEfferentObjectManager.getIdentifiersBySensor(IIdentifier sensorId)
           
 java.util.Collection<IIdentifier> IAfferentObjectManager.getIdentifiersBySensor(IIdentifier sensorId)
           
 

Methods in org.commonreality.object.manager with parameters of type IIdentifier
 O IObjectManager.get(IIdentifier affId)
          return the simulation object refered to by the identifier
 java.util.Collection<IIdentifier> IEfferentObjectManager.getIdentifiersByAgent(IIdentifier agentId)
           
 java.util.Collection<IIdentifier> IAfferentObjectManager.getIdentifiersByAgent(IIdentifier agentId)
           
 java.util.Collection<IIdentifier> IEfferentObjectManager.getIdentifiersBySensor(IIdentifier sensorId)
           
 java.util.Collection<IIdentifier> IAfferentObjectManager.getIdentifiersBySensor(IIdentifier sensorId)
           
 boolean IMutableObjectManager.remove(IIdentifier identifier)
          remove said object and fire event
 O IRequestableObjectManager.request(IIdentifier identifier)
          request than an object be created.
 IIdentifier IRequestableObjectManager.requestIdentifier(IIdentifier identifier)
           
 

Method parameters in org.commonreality.object.manager with type arguments of type IIdentifier
 void IRequestableObjectManager.addFreeIdentifiers(java.util.Collection<IIdentifier> freeIdentifiers)
          When a new block of identifiers is made available from CR, they are added to the object manager
 boolean IMutableObjectManager.remove(java.util.Collection<IIdentifier> identifiers)
           
 

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

Methods in org.commonreality.object.manager.impl that return IIdentifier
 IIdentifier BasicObject.getIdentifier()
           
 

Methods in org.commonreality.object.manager.impl that return types with arguments of type IIdentifier
 java.util.Collection<IIdentifier> GeneralObjectManager.getIdentifiers()
          return all the identifiers that have matched objects
 java.util.Collection<IIdentifier> SensoryObjectManager.getIdentifiersByAgent(IIdentifier agentId)
           
 java.util.Collection<IIdentifier> SensoryObjectManager.getIdentifiersBySensor(IIdentifier sensorId)
           
 

Methods in org.commonreality.object.manager.impl with parameters of type IIdentifier
 boolean GeneralObjectManager.contains(IIdentifier identifier)
          does this object manager have an object O that is keyed on this identifier
 O GeneralObjectManager.get(IIdentifier identifier)
          return the object O that is keyed on identifier
 java.util.Collection<IIdentifier> SensoryObjectManager.getIdentifiersByAgent(IIdentifier agentId)
           
 java.util.Collection<IIdentifier> SensoryObjectManager.getIdentifiersBySensor(IIdentifier sensorId)
           
 boolean SensoryObjectManager.remove(IIdentifier identifier)
          remove said object and fire event
 boolean GeneralObjectManager.remove(IIdentifier id)
          remove the object that is keyed on id and fire an event
 

Method parameters in org.commonreality.object.manager.impl with type arguments of type IIdentifier
 boolean SensoryObjectManager.remove(java.util.Collection<IIdentifier> ids)
           
 boolean GeneralObjectManager.remove(java.util.Collection<IIdentifier> identifiers)
          remove all the objects that are keyed on identifier.
 

Constructors in org.commonreality.object.manager.impl with parameters of type IIdentifier
AfferentObject(IIdentifier identifier)
           
AgentObject(IIdentifier identifier)
           
BasicObject(IIdentifier identifier)
           
EfferentObject(IIdentifier identifier)
           
RealObject(IIdentifier identifier)
           
SensorObject(IIdentifier identifier)
           
 

Uses of IIdentifier in org.commonreality.participant.impl
 

Methods in org.commonreality.participant.impl that return IIdentifier
 IIdentifier RequestableObjectManagerDelegate.getFreeIdentifier(java.lang.Object key)
          get a free identifier that is keyed on key.
 IIdentifier AbstractParticipant.getIdentifier()
          we don't have a valid identifier until we have connected to reality
 IIdentifier RequestableRealObjectManager.requestIdentifier(IIdentifier participantIdentifier)
           
 IIdentifier RequestableEfferentObjectManager.requestIdentifier(IIdentifier agentIdentifier)
           
 IIdentifier RequestableEfferentCommandManager.requestIdentifier(IIdentifier sensorIdentifier)
           
 IIdentifier RequestableAfferentObjectManager.requestIdentifier(IIdentifier agentIdentifier)
           
 

Methods in org.commonreality.participant.impl with parameters of type IIdentifier
 void RequestableRealObjectManager.prefetch(IIdentifier participantIdentifier)
           
 void RequestableEfferentObjectManager.prefetch(IIdentifier agentIdentifier)
           
 void RequestableEfferentCommandManager.prefetch(IIdentifier sensorIdentifier)
           
 void RequestableAfferentObjectManager.prefetch(IIdentifier agentIdentifier)
           
 IRealObject RequestableRealObjectManager.request(IIdentifier participantIdentifier)
           
 IEfferentObject RequestableEfferentObjectManager.request(IIdentifier agentIdentifier)
           
 IEfferentCommand RequestableEfferentCommandManager.request(IIdentifier sensorIdentifier)
          Deprecated. 
 IAfferentObject RequestableAfferentObjectManager.request(IIdentifier agentIdentifier)
           
 IIdentifier RequestableRealObjectManager.requestIdentifier(IIdentifier participantIdentifier)
           
 IIdentifier RequestableEfferentObjectManager.requestIdentifier(IIdentifier agentIdentifier)
           
 IIdentifier RequestableEfferentCommandManager.requestIdentifier(IIdentifier sensorIdentifier)
           
 IIdentifier RequestableAfferentObjectManager.requestIdentifier(IIdentifier agentIdentifier)
           
 void AbstractParticipant.setIdentifier(IIdentifier identifier)
          called after the connection has been established..
 

Method parameters in org.commonreality.participant.impl with type arguments of type IIdentifier
 void RequestableRealObjectManager.addFreeIdentifiers(java.util.Collection<IIdentifier> freeIdentifiers)
           
 void RequestableObjectManagerDelegate.addFreeIdentifiers(java.util.Collection<IIdentifier> freeIdentifiers)
          When a new block of identifiers is made available from CR, they are added to the object manager
 void RequestableEfferentObjectManager.addFreeIdentifiers(java.util.Collection<IIdentifier> freeIdentifiers)
           
 void RequestableEfferentCommandManager.addFreeIdentifiers(java.util.Collection<IIdentifier> freeIdentifiers)
           
 void RequestableAfferentObjectManager.addFreeIdentifiers(java.util.Collection<IIdentifier> freeIdentifiers)
           
 

Uses of IIdentifier in org.commonreality.reality
 

Methods in org.commonreality.reality that return IIdentifier
 IIdentifier IReality.newIdentifier(IIdentifier owner, IIdentifier template)
           
 

Methods in org.commonreality.reality with parameters of type IIdentifier
 IIdentifier IReality.newIdentifier(IIdentifier owner, IIdentifier template)
           
 java.util.concurrent.Future<IAcknowledgement> IReality.send(IIdentifier identifier, IMessage message)
          send a message to a specific participant.
 

Uses of IIdentifier in org.commonreality.reality.impl
 

Methods in org.commonreality.reality.impl that return IIdentifier
 IIdentifier DefaultReality.newIdentifier(IIdentifier owner, IIdentifier template)
           
 

Methods in org.commonreality.reality.impl with parameters of type IIdentifier
 IIdentifier DefaultReality.newIdentifier(IIdentifier owner, IIdentifier template)
           
 java.util.concurrent.Future<IAcknowledgement> DefaultReality.send(IIdentifier identifier, IMessage message)
           
 

Uses of IIdentifier in org.commonreality.reality.impl.handler
 

Methods in org.commonreality.reality.impl.handler that return IIdentifier
 IIdentifier ConnectionTracker.acceptConnection(ICredentials credentials, org.apache.mina.common.IoSession session, IAddressingInformation addressInfo, IIdentifier template)
           
 IIdentifier ConnectionTracker.connectionClosed(org.apache.mina.common.IoSession session)
           
static IIdentifier ConnectionTracker.getIdentifier(org.apache.mina.common.IoSession session)
           
 

Methods in org.commonreality.reality.impl.handler with parameters of type IIdentifier
 IIdentifier ConnectionTracker.acceptConnection(ICredentials credentials, org.apache.mina.common.IoSession session, IAddressingInformation addressInfo, IIdentifier template)
           
 IAddressingInformation ConnectionTracker.getAddressingInformation(IIdentifier identifier)
           
 org.apache.mina.common.IoSession ConnectionTracker.getSession(IIdentifier identifier)
           
 

Uses of IIdentifier in org.commonreality.sensors
 

Methods in org.commonreality.sensors that return types with arguments of type IIdentifier
 java.util.Collection<IIdentifier> AbstractSensor.getInterfacedAgents()
           
 

Methods in org.commonreality.sensors with parameters of type IIdentifier
 void AbstractSensor.setIdentifier(IIdentifier identifier)
           
 

Uses of IIdentifier in org.commonreality.sensors.aural
 

Methods in org.commonreality.sensors.aural with parameters of type IIdentifier
 IRealObject DefaultAuralSensor.newVocalization(java.lang.String content, double onset, double duration, IIdentifier agent)
           
 IRealObject AuralUtilities.newVocalization(java.lang.String content, double onset, double duration, IIdentifier agent)
           
 

Uses of IIdentifier in org.commonreality.sensors.keyboard
 

Constructors in org.commonreality.sensors.keyboard with parameters of type IIdentifier
PressCommand(IIdentifier identifier)
           
PressCommand(IIdentifier identifier, IIdentifier efferentId)
           
ReleaseCommand(IIdentifier identifier)
           
ReleaseCommand(IIdentifier identifier, IIdentifier efferentId)
           
 

Uses of IIdentifier in org.commonreality.sensors.prog
 

Methods in org.commonreality.sensors.prog with parameters of type IIdentifier
 void ProgrammaticSensor.commit(IIdentifier agentId)
          commit all the changes..
 IAfferentObject ProgrammaticSensor.newAfferent(IIdentifier agentId)
           
 

Uses of IIdentifier in org.commonreality.sensors.swing
 

Methods in org.commonreality.sensors.swing with parameters of type IIdentifier
 double DefaultSwingSensor.convertScreenToViewer(java.awt.geom.Rectangle2D rectangle, IIdentifier agentId)
          conver the rectangle (in screen coords) to retinotopic coordinates.
 

Uses of IIdentifier in org.commonreality.sensors.swing.component
 

Methods in org.commonreality.sensors.swing.component that return types with arguments of type IIdentifier
 java.util.Map<IIdentifier,java.util.Collection<DeltaTracker<AfferentObject>>> IComponentProcessor.getUpdates()
           
 java.util.Map<IIdentifier,java.util.Collection<DeltaTracker<AfferentObject>>> DefaultComponentProcessor.getUpdates()
           
 

Uses of IIdentifier in org.commonreality.sensors.xml
 

Methods in org.commonreality.sensors.xml with parameters of type IIdentifier
 java.util.Collection<IMessage> XMLProcessor.processFrame(IIdentifier forAgent, org.w3c.dom.Element frame, boolean sendDataRequestsNow)
           
 void XMLProcessor.sendData(IIdentifier agentId, java.util.Collection<IMessage> data)
           
 

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

Methods in org.commonreality.sensors.xml.processor with parameters of type IIdentifier
 java.util.Collection<IMessage> IXMLProcessor.process(org.w3c.dom.Element element, IIdentifier agentID, XMLSensor sensor)
           
 java.util.Collection<IMessage> AbstractProcessor.process(org.w3c.dom.Element element, IIdentifier agentID, XMLSensor sensor)