Uses of Class
jade.wrapper.ControllerException

Packages that use ControllerException
jade.wrapper Together with the classes jade.core.Profile and jade.core.Runtime this package provides support for the JADE in-process interface that allows external Java applications to use JADE as a kind of library and to launch the JADE Runtime from within the application itself.  
jade.wrapper.gateway This is a subpackage of jade.wrapper and contains a set of classes that enables a non-JADE application to issue commands to a JADE-based application.  
 

Uses of ControllerException in jade.wrapper
 

Subclasses of ControllerException in jade.wrapper
 class StaleProxyException
          This exception class is thrown when an attempt to use a stale (i.e. outdated) wrapper object is made.
 

Methods in jade.wrapper that throw ControllerException
 void PlatformController.start()
          Start the platform after its been initialized.
 void PlatformController.suspend()
          Suspend the agent platform.
 void PlatformController.resume()
          Activate the agent platform.
 void PlatformController.kill()
          Kill the agent platform.
 AgentController PlatformController.getAgent(java.lang.String localAgentName)
          Get agent proxy to local agent given its name.
 AgentController PlatformController.createNewAgent(java.lang.String nickName, java.lang.String className, java.lang.Object[] args)
          Create a new agent.
 void PlatformController.addPlatformListener(PlatformController.Listener aListener)
          Add a platform listener.
 void PlatformController.removePlatformListener(PlatformController.Listener aListener)
          Remove a platform listener.
 AgentController ContainerController.getAgent(java.lang.String localAgentName)
          Get agent proxy to local agent given its name.
 java.lang.String ContainerController.getContainerName()
          Retrieve the name of the wrapped container.
 PlatformController ContainerController.getPlatformController()
          Retrieve a controller for the platform the container wrapped by this ContainerController belongs to and acts as the Main Container.
protected  void ContainerController.initPlatformController()
           
 void AgentContainer.start()
           
 void AgentContainer.suspend()
           
 void AgentContainer.resume()
           
 void AgentContainer.addPlatformListener(PlatformController.Listener aListener)
           
 void AgentContainer.removePlatformListener(PlatformController.Listener aListener)
           
 

Uses of ControllerException in jade.wrapper.gateway
 

Methods in jade.wrapper.gateway that throw ControllerException
static void JadeGateway.execute(java.lang.Object command)
          execute a command.
static void JadeGateway.execute(java.lang.Object command, long timeout)
          execute a command specifying a timeout.
 



JADE