Uses of Interface
mail.communication.Address

Packages that use Address
mail   
mail.communication   
mail.communication.inet   
mail.gui   
mail.node   
mail.node.remote   
mail.test   
 

Uses of Address in mail
 

Methods in mail that return types with arguments of type Address
 java.util.Collection<? extends Address> User.getAddress()
           
 

Uses of Address in mail.communication
 

Methods in mail.communication that return Address
 Address Address.getSource()
          specifies the Address of the Node, that told this Address (needed for UDP hole-punching to establish a UDP connection)
abstract  Address Communicator.parseAddress(java.lang.String addr)
           
 

Methods in mail.communication that return types with arguments of type Address
abstract  java.util.Collection<Address> Communicator.getAddress()
          returns the Address this Communicator uses to send Packets
 

Methods in mail.communication with parameters of type Address
protected abstract  void CPackage.build(org.w3c.dom.Element main, Address sender)
          Exactly the Information, that was created by CPackage.buildContent(Document) needs to be parsed.
static CPackage CPackage.buildPackage(Communicator c, org.w3c.dom.Document d, Address sender)
          builds the package specified by the XML-Document.
abstract  void Communicator.findMyAddress(Address apeer)
           
abstract  void Communicator.sendPackage(CPackage p, Address to)
           
 void Address.setSource(Address source)
           
 

Constructors in mail.communication with parameters of type Address
IncompatibleAddressException(Communicator c, Address a)
           
 

Uses of Address in mail.communication.inet
 

Classes in mail.communication.inet that implement Address
 class InetAddress
           
 

Methods in mail.communication.inet that return types with arguments of type Address
 java.util.Collection<Address> InetCommunicator.getAddress()
           
 

Methods in mail.communication.inet with parameters of type Address
 void InetCommunicator.findMyAddress(Address apeer)
           
 void InetCommunicator.sendPackage(CPackage p, Address to)
           
 void InetAddress.setSource(Address source)
           
 

Uses of Address in mail.gui
 

Method parameters in mail.gui with type arguments of type Address
private  void P2pMail.setMyAddressText(java.util.Collection<? extends Address> addrs)
           
 

Uses of Address in mail.node
 

Fields in mail.node with type parameters of type Address
private  java.util.Collection<Address> RemoteNode.address
           
 

Methods in mail.node that return types with arguments of type Address
 java.util.Collection<Address> RemoteNode.getAddress()
           
 

Methods in mail.node with parameters of type Address
 void LocalNode.bootstrap(Address a, Communicator c)
           
 

Method parameters in mail.node with type arguments of type Address
 void RemoteNode.addAddress(java.util.Collection<Address> a)
           
 

Constructor parameters in mail.node with type arguments of type Address
RemoteNode(Communicator c, java.util.Collection<Address> addr, java.lang.String key)
           
 

Uses of Address in mail.node.remote
 

Fields in mail.node.remote declared as Address
(package private)  Address NameRequest.replyto
           
(package private)  Address NodeRequest.replyto
           
(package private)  Address MailRequest.replyto
           
(package private)  Address NeighborRequest.replyto
           
(package private)  Address ClosestRequest.replyto
           
 

Methods in mail.node.remote with parameters of type Address
protected  void NameStore.build(org.w3c.dom.Element main, Address sender)
           
 void NameReply.build(org.w3c.dom.Element main, Address sender)
           
 void NameRequest.build(org.w3c.dom.Element main, Address sender)
           
 void NodeRequest.build(org.w3c.dom.Element main, Address sender)
           
 void NodeReply.build(org.w3c.dom.Element main, Address sender)
           
 void MailReply.build(org.w3c.dom.Element main, Address sender)
           
 void MailRequest.build(org.w3c.dom.Element main, Address sender)
           
protected  void Store.build(org.w3c.dom.Element main, Address sender)
           
 void ClosestReply.build(org.w3c.dom.Element main, Address sender)
           
 void NeighborRequest.build(org.w3c.dom.Element main, Address sender)
           
 void Add.build(org.w3c.dom.Element main, Address sender)
           
 void ClosestRequest.build(org.w3c.dom.Element main, Address sender)
           
 void NeighborReply.build(org.w3c.dom.Element main, Address sender)
           
 

Uses of Address in mail.test
 

Classes in mail.test that implement Address
 class TestAddress
           
 

Fields in mail.test declared as Address
private  Address TestCommunicator.myAddress
           
 

Methods in mail.test that return Address
 Address TestAddress.getSource()
           
 Address TestCommunicator.parseAddress(java.lang.String addr)
           
 

Methods in mail.test that return types with arguments of type Address
 java.util.Collection<Address> TestCommunicator.getAddress()
           
 

Methods in mail.test with parameters of type Address
 void TestCommunicator.findMyAddress(Address apeer)
           
 void TestCommunicator.receivePackage(java.io.InputStream p, Address from)
           
 void TestCommunicator.sendPackage(CPackage p, Address to)
           
 void TestAddress.setSource(Address source)