com.objex.panywhere
Interface ExportListener

All Superinterfaces:
java.util.EventListener

public interface ExportListener
extends java.util.EventListener

Implement this interface to get export events generated by the Progeny Anywhere Control. Implementations of the control that wish to track the various stage of an XML export must necessarily implement this Listener


Method Summary
 void exportAborted(ExportEvent event)
          Invoked when the XML export was aborted for any reason
 void exportFinished(ExportEvent event)
          Invoked when XML export has been completed successfully
 void exportTriggered(ExportEvent event)
          Invoked when the XML export has started
 void individualExported(ExportEvent event)
          Invoked when the Individual element and all the sub-elements under the element have been generated, including all the data.
 

Method Detail

exportTriggered

void exportTriggered(ExportEvent event)
Invoked when the XML export has started


individualExported

void individualExported(ExportEvent event)
Invoked when the Individual element and all the sub-elements under the element have been generated, including all the data. Implement this method you wish to track the export on the Individual level


exportFinished

void exportFinished(ExportEvent event)
Invoked when XML export has been completed successfully


exportAborted

void exportAborted(ExportEvent event)
Invoked when the XML export was aborted for any reason