package basics.integrators;

import java.io.File;

/**
 * This interface is inteded for integrating some kind of table sheet writer into a project. An
 * implemention of this can be found in my poiadapter, which wraps functionality of the POI project.
 * To use an implementation of this interface you must put the involved jar available an bind the
 * intergrator using the Binder. The can be resolved by interface, if there is only one
 * implementation for this interface. Otherwise bind by name.
 * @author ks
 */
public interface SequentialTableSheetReader
{
public boolean setFile(File file);

public void abort();

public void start(SequentialTableSheetReaderCallback consumer);
}
