Uses of Interface
planet.commonapi.Network

Packages that use Network
planet.commonapi.factory   
planet.generic.commonapi   
planet.generic.commonapi.factory   
planet.simulate   
 

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.
 Network NetworkFactory.buildNetwork(int size, NodeFactory nodeFactory, java.lang.String topology, int k)
          Generates a new Network with the size of Nodes specified by parameter.
 

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.
 

Uses of Network in planet.generic.commonapi.factory
 

Methods in planet.generic.commonapi.factory that return Network
 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.
 Network NetworkFactoryImpl.buildNetwork(int size, NodeFactory nodeFactory, java.lang.String topology, int k)
          Builds a new network with the specified size, this concrete nodeFactory, network topology and k bits to construct new Ids for the Nodes.
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)
           
static Network GenericFactory.buildNetwork(int size, NodeFactory nodeFactory, java.lang.String topology, int k)
           
 

Uses of Network in planet.simulate
 

Methods in planet.simulate that return Network
 Network NetworkSimulator.getInternalNetwork()
          Returns a reference of the internal 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.