in src/main/java/org/apache/commons/graph/export/AbstractExporter.java [103:120]
protected abstract void startGraph( String name )
throws Exception;
protected abstract void startSerialization()
throws Exception;
public final void to( File outputFile )
throws GraphExportException
{
try
{
to( new FileOutputStream( checkNotNull( outputFile, "Impossibe to export the graph in a null file" ) ) );
}
catch ( FileNotFoundException e )
{
throw new RuntimeException( e );
}
}