Uses of Interface
jade.mtp.TransportAddress

Packages that use TransportAddress
jade.core This package contains the microkernel of JADE system. 
jade.mtp   
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. 
 

Uses of TransportAddress in jade.core
 

Methods in jade.core that return TransportAddress
 TransportAddress IMTPManager.stringToAddr(java.lang.String addr)
           
 

Methods in jade.core with parameters of type TransportAddress
static boolean Profile.compareTransportAddresses(TransportAddress ta1, TransportAddress ta2)
           
 

Constructors in jade.core with parameters of type TransportAddress
ContainerID(java.lang.String n, TransportAddress a)
          Build a container ID with the given container name and transport address.
 

Uses of TransportAddress in jade.mtp
 

Methods in jade.mtp that return TransportAddress
 TransportAddress InChannel.activate(InChannel.Dispatcher disp, Profile p)
          Activates an MTP handler for incoming messages on a default address.
 TransportAddress MTP.strToAddr(java.lang.String rep)
          Converts a string representing a valid address in this MTP to a TransportAddress object.
 

Methods in jade.mtp with parameters of type TransportAddress
 void InChannel.activate(InChannel.Dispatcher disp, TransportAddress ta, Profile p)
          Activates an MTP handler for incoming messages on a specific address.
 java.lang.String MTP.addrToStr(TransportAddress ta)
          Converts a TransportAddress object into a string representation.
 void InChannel.deactivate(TransportAddress ta)
          Deactivates the MTP handler listening at a given transport address.
 

Uses of TransportAddress in jade.util
 

Methods in jade.util that return TransportAddress
 TransportAddress TransportAddressWrapper.getAddress()
           
 

Constructors in jade.util with parameters of type TransportAddress
TransportAddressWrapper(TransportAddress t)