fcmodeler.io
Interface GraphIOFactory

All Known Implementing Classes:
SimpleDotFileFilter, RankClusterDotFileFilter, XMLFileFilter

public interface GraphIOFactory

A factory for a graph reader and graph writer. Typically, file filters will implement this interface to provide an appropriate graph reader or writer for their specific file type. The provided graph reader and writer should be compatible with each other; that is, a file written by the graph writer should be readable by the graph reader.

Since:
JDK1.3
Version:
$Revision: 1.1 $
Author:
Zach Cox

Method Summary
 GraphReader getGraphReader()
          Returns a graph reader.
 GraphWriter getGraphWriter()
          Returns a graph writer.
 

Method Detail

getGraphReader

public GraphReader getGraphReader()
Returns a graph reader.
Returns:
a graph reader.

getGraphWriter

public GraphWriter getGraphWriter()
Returns a graph writer.
Returns:
a graph writer.