public interface GraphvizGraph
An object which can be visualized as a graph should implement this interface.
The DotFormatter.toDot(com.google.javascript.rhino.Node)
function can be used to get a
visualization of the object for debugging purpose.
Modifier and Type | Interface and Description |
---|---|
static interface |
GraphvizGraph.GraphvizEdge
A Graphviz edge.
|
static interface |
GraphvizGraph.GraphvizNode
A Graphviz node.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<GraphvizGraph.GraphvizEdge> |
getGraphvizEdges()
Retrieve a list of edges in the graph.
|
java.util.List<GraphvizGraph.GraphvizNode> |
getGraphvizNodes()
Retrieve a list of nodes in the graph.
|
java.lang.String |
getName()
Name of the graph.
|
boolean |
isDirected()
Graph type.
|
java.lang.String getName()
boolean isDirected()
java.util.List<GraphvizGraph.GraphvizNode> getGraphvizNodes()
java.util.List<GraphvizGraph.GraphvizEdge> getGraphvizEdges()
Copyright © 2009-2020 Google. All Rights Reserved.