Uses of Class
jade.core.ContainerID

Packages that use ContainerID
jade.domain.introspection This package contains the definition of the ontology used by JADE for internal monitoring of the agent platform and running agents.  
jade.domain.JADEAgentManagement This package contains the definition of the JADE-Agent-Management ontology, the vocabulary with the list of used symbols, and all the Java classes that implement the concepts of the ontology. 
 

Uses of ContainerID in jade.domain.introspection
 

Methods in jade.domain.introspection that return ContainerID
 ContainerID SuspendedAgent.getWhere()
          Retrieve the value of the where slot of this event, containing the container identifier of the container where the newly suspended agent was deployed.
 ContainerID ResumedAgent.getWhere()
          Retrieve the value of the where slot of this event, containing the container identifier of the container where the newly resumed agent was deployed.
 ContainerID RemovedMTP.getWhere()
          Retrieve the value of the where slot of this event, containing the container identifier of the container where the newly removed MTP was deployed.
 ContainerID RemovedContainer.getContainer()
          Retrieve the value of the container slot of this event, containing the container identifier of the newly removed container.
 ContainerID MovedAgent.getFrom()
          Retrieve the value of the from slot of this event, containing the container identifier of the container from where the agent migrated.
 ContainerID MovedAgent.getTo()
          Retrieve the value of the to slot of this event, containing the container identifier of the container where the agent migrated.
 ContainerID KillContainerRequested.getContainer()
          Retrieve the value of the container slot of this event, containing the identifier of the container that is requested to be killed.
 ContainerID DeadAgent.getWhere()
          Retrieve the value of the where slot of this event, containing the container identifier of the container where the newly dead agent was deployed.
 ContainerID BornAgent.getWhere()
          Retrieve the value of the where slot of this event, containing the container identifier of the container where the newly added agent was born.
 ContainerID AddedMTP.getWhere()
          Retrieve the value of the where slot of this event, containing the container identifier of the container where the newly added MTP was deployed.
 ContainerID AddedContainer.getContainer()
          Retrieve the value of the container slot of this event, containing the container identifier of the newly added container.
 

Methods in jade.domain.introspection with parameters of type ContainerID
 void SuspendedAgent.setWhere(ContainerID id)
          Set the where slot of this event.
 void ResumedAgent.setWhere(ContainerID id)
          Set the where slot of this event.
 void RemovedMTP.setWhere(ContainerID id)
          Set the where slot of this event.
 void RemovedContainer.setContainer(ContainerID id)
          Set the container slot of this event.
 void MovedAgent.setFrom(ContainerID id)
          Set the from slot of this event.
 void MovedAgent.setTo(ContainerID id)
          Set the to slot of this event.
 void KillContainerRequested.setContainer(ContainerID id)
          Set the container of this event.
 void DeadAgent.setWhere(ContainerID id)
          Set the where slot of this event.
 void BornAgent.setWhere(ContainerID id)
          Set the where slot of this event.
 void AddedMTP.setWhere(ContainerID id)
          Set the where slot of this event.
 void AddedContainer.setContainer(ContainerID id)
          Set the container of this event.
 

Uses of ContainerID in jade.domain.JADEAgentManagement
 

Methods in jade.domain.JADEAgentManagement that return ContainerID
 ContainerID UninstallMTP.getContainer()
          Retrieve the value of the container slot of this action, containing the container identifier of the container where the MTP to uninstall is deployed.
 ContainerID KillContainer.getContainer()
          Retrieve the value of the container slot of this event, containing the container identifier of the container to terminate.
 ContainerID InstallMTP.getContainer()
          Retrieve the value of the container slot of this action, containing the container identifier of the container where the new MTP is to be deployed.
 ContainerID CreateAgent.getContainer()
          Retrieve the value of the container slot of this event, containing the container identifier of the container where the agent is to be created.
 

Methods in jade.domain.JADEAgentManagement with parameters of type ContainerID
 void UninstallMTP.setContainer(ContainerID cid)
          Set the container slot of this action.
 void KillContainer.setContainer(ContainerID cid)
          Set the container slot of this action.
 void InstallMTP.setContainer(ContainerID cid)
          Set the container slot of this action.
 void CreateAgent.setContainer(ContainerID cid)
          Set the container slot of this action.
 



JADE