Uses of Interface
planet.commonapi.factory.NodeFactory

Packages that use NodeFactory
planet.commonapi.factory   
planet.generic.commonapi   
planet.generic.commonapi.factory   
 

Uses of NodeFactory in planet.commonapi.factory
 

Methods in planet.commonapi.factory that return NodeFactory
 NodeFactory NetworkFactory.getNodeFactory()
          Returns the actual NodeFactory to use to generate networks.
 

Methods in planet.commonapi.factory with parameters of type NodeFactory
 Network NetworkFactory.buildNetwork(int size, NodeFactory nodeFactory)
          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.
 void NetworkFactory.setNodeFactory(NodeFactory nodeFactory)
          Sets the NodeFactory to use in the future to generate new networks.
 

Uses of NodeFactory in planet.generic.commonapi
 

Constructors in planet.generic.commonapi with parameters of type NodeFactory
NetworkImpl(NodeFactory nodeFactory)
          Initialize the network with: No nodes.
 

Uses of NodeFactory in planet.generic.commonapi.factory
 

Classes in planet.generic.commonapi.factory that implement NodeFactory
 class NodeFactoryImpl
          This is a specific implementation of NodeFactory that permits build any class of Node with any type of Id.
 

Fields in planet.generic.commonapi.factory declared as NodeFactory
protected  NodeFactory NetworkFactoryImpl.nodeFactory
          The NodeFactory actually in use.
 

Methods in planet.generic.commonapi.factory that return NodeFactory
static NodeFactory GenericFactory.getNodeFactory()
          Builds a new instance of NodeFactory.
 NodeFactory NetworkFactoryImpl.getNodeFactory()
          Returns the NodeFactory actually in use.
static NodeFactory GenericFactory.getNodeFactory(java.lang.String propertiesFile)
          Builds a new instance of NodeFactory.
 

Methods in planet.generic.commonapi.factory with parameters of type NodeFactory
static Network GenericFactory.buildNetwork(int size, NodeFactory nodeFactory)
           
 Network NetworkFactoryImpl.buildNetwork(int size, NodeFactory nodeFactory)
          Builds a new network with the specified size and this concrete nodeFactory.
static Network GenericFactory.buildNetwork(int size, NodeFactory nodeFactory, java.lang.String topology)
           
 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.
static Network GenericFactory.buildNetwork(int size, NodeFactory nodeFactory, java.lang.String topology, int k)
           
 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 void GenericFactory.setNodeFactory(NodeFactory nodeFactory)
           
 void NetworkFactoryImpl.setNodeFactory(NodeFactory nodeFactory)
          Sets the NodeFactory to use in the future.