Package com.algo.export
Class ExportFilter
- java.lang.Object
-
- com.algo.export.ExportFilter
-
- Direct Known Subclasses:
GralogTrivialGraphFormatExport
,LEDAExport
,TikZExport
,TrivialGraphFormatExport
public abstract class ExportFilter extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description ExportFilter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
exportGraph(Structure structure, java.io.OutputStreamWriter stream, ExportFilterParameters params)
void
exportGraph(Structure structure, java.lang.String fileName, ExportFilterParameters params)
ExportFilterDescription
getDescription()
java.util.Map<java.lang.String,Edge>
getEdgeNames(Structure structure, ExportFilterParameters params)
ExportFilterParameters
getParameters(Structure structure)
java.util.Map<java.lang.String,Vertex>
getVertexNames(Structure structure, ExportFilterParameters params)
-
-
-
Method Detail
-
getParameters
public ExportFilterParameters getParameters(Structure structure)
-
exportGraph
public void exportGraph(Structure structure, java.lang.String fileName, ExportFilterParameters params) throws java.lang.Exception
- Throws:
java.lang.Exception
-
exportGraph
public void exportGraph(Structure structure, java.io.OutputStreamWriter stream, ExportFilterParameters params) throws java.lang.Exception
- Throws:
java.lang.Exception
-
getVertexNames
public java.util.Map<java.lang.String,Vertex> getVertexNames(Structure structure, ExportFilterParameters params) throws java.lang.Exception
- Throws:
java.lang.Exception
-
getEdgeNames
public java.util.Map<java.lang.String,Edge> getEdgeNames(Structure structure, ExportFilterParameters params) throws java.lang.Exception
- Throws:
java.lang.Exception
-
getDescription
public ExportFilterDescription getDescription() throws java.lang.Exception
- Throws:
java.lang.Exception
-
-