|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.jgrapht.ext.GraphMLExporter<V,E>
public class GraphMLExporter<V,E>
Exports a graph into a GraphML file.
For a description of the format see http://en.wikipedia.org/wiki/GraphML.
| Constructor Summary | |
|---|---|
GraphMLExporter()
Constructs a new GraphMLExporter object with integer name providers for the vertex and edge IDs and null providers for the vertex and edge labels. |
|
GraphMLExporter(VertexNameProvider<V> vertexIDProvider,
VertexNameProvider<V> vertexLabelProvider,
EdgeNameProvider<E> edgeIDProvider,
EdgeNameProvider<E> edgeLabelProvider)
Constructs a new GraphMLExporter object with the given ID and label providers. |
|
| Method Summary | |
|---|---|
void |
export(java.io.Writer writer,
Graph<V,E> g)
Exports a graph into a plain text file in GraphML format. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public GraphMLExporter()
public GraphMLExporter(VertexNameProvider<V> vertexIDProvider,
VertexNameProvider<V> vertexLabelProvider,
EdgeNameProvider<E> edgeIDProvider,
EdgeNameProvider<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.edgeIDProvider - for generating vertex IDs. Must not be null.edgeLabelProvider - for generating edge labels. If null, edge labels
will not be written to the file.| Method Detail |
|---|
public void export(java.io.Writer writer,
Graph<V,E> g)
throws org.xml.sax.SAXException,
javax.xml.transform.TransformerConfigurationException
writer - the writer to which the graph to be exportedg - the graph to be exported
org.xml.sax.SAXException
javax.xml.transform.TransformerConfigurationException
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||