Uses of Interface
jade.util.leap.List

Packages that use List
jade.content.abs   
jade.content.onto.basic   
jade.core This package contains the microkernel of JADE system. 
jade.core.behaviours This package is a subpackage of jade.core and contains the classes used to implement basic agent behaviours. 
jade.domain This package and its sub-packages contains FIPA specific agents and ontologies. 
jade.domain.mobility This package contains the definition of the JADE-mobility ontology, the vocabulary with the list of used symbols, and all the Java classes that implement the concepts of the ontology. 
jade.util This package contains utility classes and in particular: classes for handling properties in an extended way (see the Tutorial), the Logger class for logging capabilities; the leap subpackage, that is a replacement for the Java collection framework that is not supported by J2ME. 
jade.util.leap This package contains a set of classes that provides a replacement for the Java collection framework that is not supported by J2ME. 
 

Uses of List in jade.content.abs
 

Methods in jade.content.abs that return List
static List AbsHelper.internaliseList(AbsAggregate aggregate, Ontology onto)
          Converts an AbsAggregate into a List using the specified ontology.
 

Methods in jade.content.abs with parameters of type List
static AbsAggregate AbsHelper.externaliseList(List obj, Ontology onto, java.lang.String AggregateType)
          Converts a List into a AbsAggregate using the specified ontology.
 

Uses of List in jade.content.onto.basic
 

Methods in jade.content.onto.basic that return List
 List Result.getItems()
           
 

Methods in jade.content.onto.basic with parameters of type List
 void Result.setItems(List l)
           
 

Uses of List in jade.core
 

Methods in jade.core that return List
 List MainContainerImpl.amsSearch(AMSAgentDescription template, long maxResults)
          Searches the White Pages for agents whose description matches a given template.
 List AgentManager.amsSearch(AMSAgentDescription template, long maxResults)
           
 List MainContainerImpl.containerAgents(ContainerID cid)
          Return all agents living on a container
 List MainContainer.containerAgents(ContainerID cid)
           
 List AgentManager.containerAgents(ContainerID cid)
           
 List MainContainerImpl.containerMTPs(ContainerID cid)
          Return all MTPs in a given container
 List MainContainer.containerMTPs(ContainerID cid)
           
 List AgentManager.containerMTPs(ContainerID cid)
           
 List IMTPManager.getLocalAddresses()
          Return the the List of TransportAddress where this IMTP is waiting for intra-platform remote calls.
 List ProfileImpl.getSpecifiers(java.lang.String key)
          Retrieve a list of Specifiers from the configuration properties.
abstract  List Profile.getSpecifiers(java.lang.String key)
          Retrieve a list of Specifiers from the configuration properties.
 List BackEndContainer.removePendingMessages(MessageTemplate template, boolean notifyFailure)
           
 

Methods in jade.core with parameters of type List
 void MessageQueue.copyTo(List list)
          Copy all messages to a given list.
 void MainContainerImpl.debugOff(AID debuggerName, List notToBeDebugged)
          Deactivate debugging on a given agent
 void AgentManager.debugOff(AID debuggerName, List toBeDebugged)
           
 void MainContainerImpl.debugOn(AID debuggerName, List toBeDebugged)
          Activate debugging on a given agent
 void AgentManager.debugOn(AID debuggerName, List toBeDebugged)
           
 void AgentContainer.fillListFromBlockedBehaviours(List behaviours, Agent a)
           
 void AgentContainer.fillListFromMessageQueue(List messages, Agent a)
           
 void AgentContainer.fillListFromReadyBehaviours(List behaviours, Agent a)
           
 void ProfileImpl.setSpecifiers(java.lang.String key, List value)
          Assign the given property value to the given property name
abstract  void Profile.setSpecifiers(java.lang.String key, List value)
          Assign the given value to the given property name.
 void MainContainerImpl.sniffOff(AID snifferName, List notToBeSniffed)
          Deactivate sniffing on a given agent
 void AgentManager.sniffOff(AID snifferName, List toBeSniffed)
           
 void MainContainerImpl.sniffOn(AID snifferName, List toBeSniffed)
          Activate sniffing on a given agent
 void AgentManager.sniffOn(AID snifferName, List toBeSniffed)
           
 

Uses of List in jade.core.behaviours
 

Fields in jade.core.behaviours declared as List
protected  List FSMBehaviour.lastStates
           
 

Methods in jade.core.behaviours with parameters of type List
protected  void LoaderBehaviour.getOutputParameters(Behaviour b, List params)
           
protected  void LoaderBehaviour.setInputParameters(Behaviour b, List params)
           
 

Uses of List in jade.domain
 

Methods in jade.domain that return List
protected  List DFDBKB.searchSingle(java.lang.Object template, int maxResult)
          Retrieve the DFDs matching the given template
 

Methods in jade.domain with parameters of type List
 void DFGUIInterface.refreshLastSearchResults(List l, AID df)
           
 

Uses of List in jade.domain.mobility
 

Methods in jade.domain.mobility that return List
 List LoadBehaviour.getParameters()
           
 

Methods in jade.domain.mobility with parameters of type List
 void LoadBehaviour.setParameters(List parameters)
          Set the list of parameters to be passed to the behaviour.
 

Uses of List in jade.util
 

Methods in jade.util that return List
 List SynchList.startModifying()
          This method grants writing privileges to the calling thread and grants access to the protected list.
 List SynchList.startScanning()
          This method grants reading privileges to the calling thread and grants access to the protected list.
 

Uses of List in jade.util.leap
 

Classes in jade.util.leap that implement List
 class ArrayList
          The LEAP (environment-dependent) version of the &qote;java.util.ArrayList&qote; class.
 class LinkedList
          The LEAP (environment-dependent) version of the &qote;java.util.ArrayList&qote; class.