BE_graphes/src/main/org/insa/graph/io/AbstractGraphReader.java

18 lines
288 B
Java

package org.insa.graph.io;
import java.io.IOException;
import org.insa.graph.Graph;
public interface AbstractGraphReader {
/**
* Read a graph an returns it.
*
* @return Graph.
* @throws Exception
*
*/
public Graph read() throws IOException;
}