fcmodeler.io
Interface GraphReader

All Known Implementing Classes:
AbstractGraphReader

public interface GraphReader

An interface for classes that can read a graph in some text format and create a graph model from that text.

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

Method Summary
 void configure(FCModeler fcmodeler)
           
 boolean isReadingCoordinates()
           
 boolean isReadingMappings()
           
 boolean isReadingTopology()
           
 void readCoordinates(boolean read)
           
 void readGraph(java.io.Reader reader)
          Reads the graph from the specified input source.
 void readMappings(boolean read)
           
 void readTopology(boolean read)
           
 

Method Detail

configure

public void configure(FCModeler fcmodeler)

isReadingCoordinates

public boolean isReadingCoordinates()

isReadingMappings

public boolean isReadingMappings()

isReadingTopology

public boolean isReadingTopology()

readCoordinates

public void readCoordinates(boolean read)

readGraph

public void readGraph(java.io.Reader reader)
Reads the graph from the specified input source.
Parameters:
reader - the input source containing the graph in text format.

readMappings

public void readMappings(boolean read)

readTopology

public void readTopology(boolean read)