V - the graph vertex typeE - the graph edge typeDOTExporter instead.@Deprecated public class DOTExporter<V,E> extends Object implements GraphExporter<V,E>
For a description of the format see http://en.wikipedia.org/wiki/DOT_language.
| Modifier and Type | Field and Description |
|---|---|
static String |
DEFAULT_GRAPH_ID
Deprecated.
Default graph id used by the exporter.
|
| Constructor and Description |
|---|
DOTExporter()
Deprecated.
Constructs a new DOTExporter object with an integer name provider for the vertex IDs and null
providers for the vertex and edge labels.
|
DOTExporter(ComponentNameProvider<V> vertexIDProvider,
ComponentNameProvider<V> vertexLabelProvider,
ComponentNameProvider<E> edgeLabelProvider)
Deprecated.
Constructs a new DOTExporter object with the given ID and label providers.
|
DOTExporter(ComponentNameProvider<V> vertexIDProvider,
ComponentNameProvider<V> vertexLabelProvider,
ComponentNameProvider<E> edgeLabelProvider,
ComponentAttributeProvider<V> vertexAttributeProvider,
ComponentAttributeProvider<E> edgeAttributeProvider)
Deprecated.
Constructs a new DOTExporter object with the given ID, label, and attribute providers.
|
DOTExporter(ComponentNameProvider<V> vertexIDProvider,
ComponentNameProvider<V> vertexLabelProvider,
ComponentNameProvider<E> edgeLabelProvider,
ComponentAttributeProvider<V> vertexAttributeProvider,
ComponentAttributeProvider<E> edgeAttributeProvider,
ComponentNameProvider<Graph<V,E>> graphIDProvider)
Deprecated.
Constructs a new DOTExporter object with the given ID, label, attribute, and graph id
providers.
|
| Modifier and Type | Method and Description |
|---|---|
void |
exportGraph(Graph<V,E> g,
Writer writer)
Deprecated.
Exports a graph into a plain text file in DOT format.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitexportGraph, exportGraphpublic static final String DEFAULT_GRAPH_ID
public DOTExporter()
public DOTExporter(ComponentNameProvider<V> vertexIDProvider, ComponentNameProvider<V> vertexLabelProvider, ComponentNameProvider<E> edgeLabelProvider)
vertexIDProvider - for generating vertex IDs. Must not be null.vertexLabelProvider - for generating vertex labels. If null, vertex labels will not be
written to the file.edgeLabelProvider - for generating edge labels. If null, edge labels will not be written
to the file.public DOTExporter(ComponentNameProvider<V> vertexIDProvider, ComponentNameProvider<V> vertexLabelProvider, ComponentNameProvider<E> edgeLabelProvider, ComponentAttributeProvider<V> vertexAttributeProvider, ComponentAttributeProvider<E> edgeAttributeProvider)
vertexIDProvider - for generating vertex IDs. Must not be null.vertexLabelProvider - for generating vertex labels. If null, vertex labels will not be
written to the file (unless an attribute provider is supplied which also supplies
labels).edgeLabelProvider - for generating edge labels. If null, edge labels will not be written
to the file.vertexAttributeProvider - for generating vertex attributes. If null, vertex attributes
will not be written to the file.edgeAttributeProvider - for generating edge attributes. If null, edge attributes will
not be written to the file.public DOTExporter(ComponentNameProvider<V> vertexIDProvider, ComponentNameProvider<V> vertexLabelProvider, ComponentNameProvider<E> edgeLabelProvider, ComponentAttributeProvider<V> vertexAttributeProvider, ComponentAttributeProvider<E> edgeAttributeProvider, ComponentNameProvider<Graph<V,E>> graphIDProvider)
vertexIDProvider - for generating vertex IDs. Must not be null.vertexLabelProvider - for generating vertex labels. If null, vertex labels will not be
written to the file (unless an attribute provider is supplied which also supplies
labels).edgeLabelProvider - for generating edge labels. If null, edge labels will not be written
to the file.vertexAttributeProvider - for generating vertex attributes. If null, vertex attributes
will not be written to the file.edgeAttributeProvider - for generating edge attributes. If null, edge attributes will
not be written to the file.graphIDProvider - for generating the graph ID. If null the graph is named
DEFAULT_GRAPH_ID.public void exportGraph(Graph<V,E> g, Writer writer)
exportGraph in interface GraphExporter<V,E>g - the graph to be exportedwriter - the writer to which the graph to be exportedCopyright © 2017. All rights reserved.