Interface NodeCreator<T>

All Known Implementing Classes:
DefaultNodeCreator

public interface NodeCreator<T>
Creates agents to be used as nodes in a network. This is intended to be used for automated network creation that also creates the nodes in the network.
Author:
Nick Collier
  • Method Summary

    Modifier and Type
    Method
    Description
    Creates and returns a node to be added to a network via a context.
  • Method Details

    • createNode

      T createNode(String label)
      Creates and returns a node to be added to a network via a context.
      Parameters:
      label - the node label. If the node label does not exist this will be an empty string
      Returns:
      the created Node.