net.sourceforge.jdbcexporter.event
Interface ExportListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
LogExportListener

public interface ExportListener
extends java.util.EventListener

The ExportListener defines methods that are called to indicate the status of the export.

Version:
0.67
Author:
Chris Nagy

Method Summary
 void entityExportFinished(ExportEntityEvent event)
          Indicates that the export of an entity finished.
 void entityExportStarted(ExportEntityEvent event)
          Indicates that the export of an entity started.
 void exportFinished(ExportEvent event)
          Indicates that the export finished.
 void exportStarted(ExportEvent event)
          Indicates that the export started.
 void rowProcessed(ExportEntityRowEvent event)
          Indicates that a row has been processed.
 

Method Detail

exportStarted

public void exportStarted(ExportEvent event)
Indicates that the export started.

Parameters:
event - general export event

entityExportStarted

public void entityExportStarted(ExportEntityEvent event)
Indicates that the export of an entity started.

Parameters:
event - general export entity event

rowProcessed

public void rowProcessed(ExportEntityRowEvent event)
Indicates that a row has been processed.

Parameters:
event - export entity row event

entityExportFinished

public void entityExportFinished(ExportEntityEvent event)
Indicates that the export of an entity finished.

Parameters:
event - general Export entity event

exportFinished

public void exportFinished(ExportEvent event)
Indicates that the export finished.

Parameters:
event - general export event