Uses of Class
com.alexmerz.graphviz.objects.Node

Packages that use Node
com.alexmerz.graphviz This package contains the Tokenizer and Parser classes to create a datastructure from an Reader containing a Graphviz document. 
com.alexmerz.graphviz.objects This package contains the objects representing a Graph including all its Node, Edges and Subgraphs. 
 

Uses of Node in com.alexmerz.graphviz
 

Methods in com.alexmerz.graphviz that return Node
 Node Parser.node()
          Production for a single node
 Node Parser.subgraph()
          Production for a subgraph
 

Methods in com.alexmerz.graphviz that return types with arguments of type Node
 java.util.ArrayList<Node> Parser.matrix()
          Production for a list of nodes
 

Uses of Node in com.alexmerz.graphviz.objects
 

Methods in com.alexmerz.graphviz.objects that return Node
 Node Graph.findNode(Id id)
          Tries to find a node of a Graph depending on the given Id object.
 Node PortNode.getNode()
          Returns the node
 

Methods in com.alexmerz.graphviz.objects that return types with arguments of type Node
 java.util.ArrayList<Node> Graph.getNodes(boolean thisOnly)
          Returns all Nodes of the graph.
 

Methods in com.alexmerz.graphviz.objects with parameters of type Node
 void Graph.addNode(Node n)
          Adds a Node object to the graph
 void PortNode.setNode(Node node)
          Sets the node
 

Constructors in com.alexmerz.graphviz.objects with parameters of type Node
PortNode(Node n)
          Creates a PortNode with a given Node and empty port
PortNode(Node n, java.lang.String port)
          Creates a PortNode with the given Node and Port