Package de.tuclausthal.informatik.winf.mobileagents.p2p

Examples of de.tuclausthal.informatik.winf.mobileagents.p2p.P2PNetwork


   */
  public void connect()
  {
    for (int i = 0; i < this.networks.size(); i++)
    {
      P2PNetwork network = (P2PNetwork)this.networks.get(i);
      network.connect();
    }
  }
View Full Code Here


   */
  public void disconnect()
  {
    for (int i = 0; i < this.networks.size(); i++)
    {
      P2PNetwork network = (P2PNetwork)this.networks.get(i);
      network.disconnect();
    }
  }
View Full Code Here

  {
    Node n = null;

    for (int i = 0; i < this.networks.size(); i++)
    {
      P2PNetwork network = (P2PNetwork)this.networks.get(i);
      n = network.getNode(node);
      if (n != null)
      {
        return n;
      }
    }
View Full Code Here

TOP

Related Classes of de.tuclausthal.informatik.winf.mobileagents.p2p.P2PNetwork

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.