Uses of Class
peer2me.domain.Node

Packages that use Node
peer2me.domain   
peer2me.framework   
peer2me.network   
 

Uses of Node in peer2me.domain
 

Methods in peer2me.domain that return Node
static Node Node.restoreNode(java.lang.String nodeString)
          This method restores a node with the properties specified in the given input string.
 Node[] GroupSyncPackage.getParticipants()
          This method returns a list of the nodes that are participating in the network (group)
 Node Group.getNode(java.lang.String address)
          This method returns a node with the address specified as input
 Node DataPackage.getSender()
          This method returns the sender of this data package
 

Methods in peer2me.domain with parameters of type Node
 void Group.addParticipant(Node node)
          This method adds a node to the group as a participant.
 void DataPackage.setSender(Node sender)
          This method sets the sender of this data package
 

Constructors in peer2me.domain with parameters of type Node
TextPackage(Node sender, java.lang.String[] recipients, java.lang.String content)
          Constructor
GroupSyncPackage(Node sender, java.lang.String[] recipients, Node[] participatingNodes)
          Constructor
FilePackage(Node sender, java.lang.String[] recipients, java.lang.String filePath)
          Constructor
DataPackage(int type, Node sender, java.lang.String[] recipients)
          Constructor
 

Uses of Node in peer2me.framework
 

Methods in peer2me.framework that return Node
 Node FrameworkFrontEnd.getLocalNode()
          This method returns a reference to the local node.
 

Uses of Node in peer2me.network
 

Constructors in peer2me.network with parameters of type Node
NodeConnection(javax.microedition.io.StreamConnection connection, Node node)
          Constructor.