18 lines
288 B
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;
|
|
|
|
}
|