package basics.integrators;

public interface SequentialTableSheetReaderCallback
{
void nextRow();
void nextCell(Object value);
void done();
}
