Uses of Interface
planet.commonapi.Network

Packages that use Network
planet.commonapi   
planet.commonapi.factory   
planet.commonapi.results   
planet.generic.commonapi   
planet.generic.commonapi.factory   
planet.generic.commonapi.results   
planet.simulate   
planet.test.dht2   
 

Uses of Network in planet.commonapi
 

Methods in planet.commonapi that return Network
 Network Network.setValues(java.lang.String topology, NodeFactory nodeFactory)
          Sets the initial values for the new Network instance.
 

Uses of Network in planet.commonapi.factory
 

Methods in planet.commonapi.factory that return Network
 Network NetworkFactory.buildNetwork()
          Generates a new Network with the actual size of the Network.
 Network NetworkFactory.buildNetwork(int size)
          Generates a new Network with the size of Nodes specified by parameter.
 Network NetworkFactory.buildNetwork(int size, NodeFactory nodeFactory)
          Generates a new Network with the size of Nodes specified by parameter.
 Network NetworkFactory.buildNetwork(int size, java.lang.String topology)
          Generates a new Network with the size of Nodes specified by parameter.
 Network NetworkFactory.buildNetwork(int size, NodeFactory nodeFactory, java.lang.String topology)
          Generates a new Network with the size of Nodes specified by parameter.
 

Uses of Network in planet.commonapi.results
 

Methods in planet.commonapi.results with parameters of type Network
 void ResultsGenerator.generateResults(Network network, java.lang.String out, ResultsConstraint constraint, boolean wholeNetworkLayout)
          This method generates required information for the actual network using the required output format.
 

Uses of Network in planet.generic.commonapi
 

Classes in planet.generic.commonapi that implement Network
 class NetworkImpl
          This implementation of Network interface pretends to abstract any network, based with the actual commonapi, of course.
 

Methods in planet.generic.commonapi that return Network
 Network NetworkImpl.setValues(java.lang.String topology, NodeFactory nodeFactory)
          Sets the initial values for the new Network instance.
 

Methods in planet.generic.commonapi with parameters of type Network
static void GenericApp.printNetwork(Network network)
          Using the attribute planet.util.Properties.simulatorPrintLevel prints out (or not) the whole network.
 

Uses of Network in planet.generic.commonapi.factory
 

Methods in planet.generic.commonapi.factory that return Network
static Network GenericFactory.buildNetwork()
           
static Network GenericFactory.buildNetwork(int size)
           
static Network GenericFactory.buildNetwork(int size, NodeFactory nodeFactory)
           
static Network GenericFactory.buildNetwork(int size, java.lang.String topology)
           
static Network GenericFactory.buildNetwork(int size, NodeFactory nodeFactory, java.lang.String topology)
           
 Network NetworkFactoryImpl.buildNetwork()
          Builds a network with the actual specified properties.
 Network NetworkFactoryImpl.buildNetwork(int size)
          Builds a network with the actual specified properties, but overwriting the number of nodes to build within.
 Network NetworkFactoryImpl.buildNetwork(int size, java.lang.String topology)
          Builds a network with the specified size for the network, building it under this concrete topology.
 Network NetworkFactoryImpl.buildNetwork(int size, NodeFactory nodeFactory)
          Builds a new network with the specified size and this concrete nodeFactory.
 Network NetworkFactoryImpl.buildNetwork(int size, NodeFactory nodeFactory, java.lang.String topology)
          Builds a new network with the specified size, this concrete nodeFactory and network topology.
protected  Network NetworkFactoryImpl._buildNetwork(int size, NodeFactory nodeFactory, java.lang.String topology)
          Builds a network with the specified parameters.
 

Methods in planet.generic.commonapi.factory with parameters of type Network
static void GenericFactory.generateResults(java.lang.String resultsName, Network network, java.lang.String out, ResultsConstraint constraint, boolean wholeNetworkLayout)
           
 

Uses of Network in planet.generic.commonapi.results
 

Methods in planet.generic.commonapi.results with parameters of type Network
 void ResultsGMLGenerator.generateResults(Network network, java.lang.String out, ResultsConstraint constraint, boolean wholeNetworkLayout)
          This method generates GML information into out file for a stable Overlay ring using GML format.
 void ResultsPajekGenerator.generateResults(Network network, java.lang.String out, ResultsConstraint constraint, boolean wholeNetworkLayout)
          This method generates the Pajek information into out file for the specified network.
 

Uses of Network in planet.simulate
 

Methods in planet.simulate that return Network
 Network NetworkSimulator.getInternalNetwork()
          Returns a reference of the internal network.
 

Methods in planet.simulate with parameters of type Network
static void NetworkSimulator.saveState(Network network)
          Serialize the specified network.
 

Constructors in planet.simulate with parameters of type Network
NetworkSimulator(IScheduler timer, Network net)
          Constructor, create a new simulation with a determinate event scheduler
NetworkSimulator(IScheduler timer, Network net, java.lang.String factoriesProperties, java.lang.String simProperties, java.lang.String chordProperties)
          Constructor that generates a new instance of Network and prepares its simulation using the parameters specified in the properties file.
 

Uses of Network in planet.test.dht2
 

Methods in planet.test.dht2 with parameters of type Network
 void DHTTest.insertAll(java.lang.String insertSet, DHTApplication app, Network network)
          This methods insert all keys from a file called insertSet to DHT.
 void DHTTest.lookupAll(java.lang.String lookupSet, int UpperBound, DHTApplication app, Network network)
          This method launches several lookup operation into Symphony Ring.