Uses of Class
org.objectweb.mobilitools.smi.api.Name

Packages that use Name
org.objectweb.mobilitools.smi The core Simple MAF Implementation. 
org.objectweb.mobilitools.smi.api User API for Simple MAF Implementation. 
org.objectweb.mobilitools.smi.goodies Goodies for the Simple MAF/MASIF Implementation (GUI tools, helper classes). 
 

Uses of Name in org.objectweb.mobilitools.smi
 

Methods in org.objectweb.mobilitools.smi that return Name
 Name AgentEntry.getName()
           
 Name FinderEntry.getName()
           
 

Methods in org.objectweb.mobilitools.smi with parameters of type Name
 java.lang.String[] Finder.lookup_locations(Name name, java.lang.String location, java.lang.Object profile)
           
 void Finder.unregister(Name name)
           
 org.omg.CfMAF.AgentProfile Finder.getAgentProfile(Name name)
           
 

Constructors in org.objectweb.mobilitools.smi with parameters of type Name
AgentEntry(MobileObject agent, Name name, java.lang.String place, boolean running, java.lang.String codebase, java.util.Properties properties)
          Creates a new data record describing an agent (with null as agency personality specific data)
AgentEntry(MobileObject agent, Name name, java.lang.String place, boolean running, java.lang.String codebase, java.util.Properties properties, java.lang.Object data)
          Creates a new data record describing an agent.
FinderEntry(Name name, java.lang.String location, java.lang.Object profile)
           
 

Uses of Name in org.objectweb.mobilitools.smi.api
 

Methods in org.objectweb.mobilitools.smi.api that return Name
 Name AgentInfo.getName()
           
 Name Agency.getName()
           
 Name[] Agency.listLocalAgents(org.omg.CfMAF.AgentProfile profile)
           
 

Methods in org.objectweb.mobilitools.smi.api with parameters of type Name
 AgentInfo Agency.getAgentInfo(Name agent)
           
 AgentInfo Agency.createLocalAgent(java.lang.String agent_class, Name name, java.lang.String place, java.lang.String codebase, java.util.Properties properties, java.lang.Object argument)
          Creates an agent in current agency.
 AgentInfo Agency.createLocalAgent(java.lang.String classname, Name name, org.omg.CfMAF.AgentProfile profile, java.lang.String place, java.lang.String codebase, byte[] agent_data, java.lang.Object argument, org.omg.CfMAF.MAFAgentSystem class_provider)
          Creates an agent in current agency.
 void Agency.moveLocalAgent(Name agent, Location agency, java.lang.String place)
          Invokes the beforeMove() callback on the agent, and then tries to move it if no exception has been thrown by beforeMove().
 void Agency.terminateLocalAgent(Name agent)
          Invokes the beforeDeath() callback on an agent, and then terminates it.
 void Agency.resumeLocalAgent(Name agent)
          Invokes the beforeResume() callback on an agent in order to resume its activity.
 void Agency.suspendLocalAgent(Name agent)
          Invokes the beforeSuspend() callback on an agent in order to suspend its activity.
 void Agency.setLocalAgentProperty(Name agent, java.lang.String property, java.lang.String value)
          Sets, changes or unsets an agent property.
 boolean Agency.localAgentIsRunning(Name agent)
           
 

Constructors in org.objectweb.mobilitools.smi.api with parameters of type Name
Name(Name name)
          Duplicates a Name.
 

Uses of Name in org.objectweb.mobilitools.smi.goodies
 

Methods in org.objectweb.mobilitools.smi.goodies that return Name
 Name RegionManager.createAgent(java.lang.String region, Name agency, java.lang.String classname, java.lang.String codebase, Name name, java.lang.String place, org.omg.CfMAF.AgentProfile profile, java.io.Serializable agent_data, java.lang.Object[] arguments)
          Creates an agent in the named agency of the specified region.
 Name RegionManager.createAgent(Location location, java.lang.String classname, java.lang.String codebase, Name name, java.lang.String place, org.omg.CfMAF.AgentProfile profile, java.io.Serializable agent_data, java.lang.Object argObj)
          Creates an agent at the specified agent system location.
 Name[] RegionManager.listAgentNames(java.lang.String region, java.util.Properties properties)
           
 Name[] RegionManager.listAgentsIn(Location location)
           
 Name[] RegionManager.listAgentsIn(Location location, org.omg.CfMAF.AgentProfile profile)
           
 

Methods in org.objectweb.mobilitools.smi.goodies with parameters of type Name
 Name RegionManager.createAgent(java.lang.String region, Name agency, java.lang.String classname, java.lang.String codebase, Name name, java.lang.String place, org.omg.CfMAF.AgentProfile profile, java.io.Serializable agent_data, java.lang.Object[] arguments)
          Creates an agent in the named agency of the specified region.
 Name RegionManager.createAgent(Location location, java.lang.String classname, java.lang.String codebase, Name name, java.lang.String place, org.omg.CfMAF.AgentProfile profile, java.io.Serializable agent_data, java.lang.Object argObj)
          Creates an agent at the specified agent system location.
 void RegionManager.moveAgent(java.lang.String from_region, Name agent, java.lang.String to_region, Name to_agency, java.lang.String place)
          Moves an agent to the named agency in the specified region.
 void RegionManager.moveAgent(Location from_location, Name agent, Location to_location, java.lang.String place)
          Moves an agent to the specified location.
 void RegionManager.resumeAgent(java.lang.String region, Name agent)
          Resumes the activity of the specified agent in the specified region.
 void RegionManager.resumeAgent(Location location, Name agent)
          Resumes the activity of the specified agent residing at the specified location.
 void RegionManager.suspendAgent(java.lang.String region, Name agent)
          Suspends the activity of the specified agent in the specified region.
 void RegionManager.suspendAgent(Location location, Name agent)
          Suspends the activity of the specified agent residing at the specified location.
 boolean RegionManager.isRunning(java.lang.String region, Name agent)
           
 boolean RegionManager.isRunning(Location location, Name agent)
           
 void RegionManager.terminateAgent(java.lang.String region, Name agent)
          Terminates the specified agent in the specified region.
 void RegionManager.terminateAgent(Location location, Name agent)
          Terminates the specified agent in the specified region.
 void RegionManager.terminateAgency(java.lang.String region, Name agency)
          Terminates the specified agency in the specified region.
 Location RegionManager.findAgent(java.lang.String region, Name agent)
           
 Location RegionManager.findAgency(java.lang.String region, Name agency)
           
 java.util.Properties RegionManager.getAgentProperties(java.lang.String region, Name name)