net.datacrow.core.migration
Interface IModuleWizardClient

All Known Implementing Classes:
PanelExportTask, PanelImportTask

public interface IModuleWizardClient


Method Summary
 void notifyError(java.lang.Exception e)
           
 void notifyFinished()
           
 void notifyMessage(java.lang.String msg)
           
 void notifyNewTask()
           
 void notifyProcessed()
           
 void notifyStarted(int count)
           
 void notifyStartedSubProcess(int count)
          Indicates a sub process has been started.
 void notifySubProcessed()
           
 

Method Detail

notifyNewTask

void notifyNewTask()

notifyStarted

void notifyStarted(int count)

notifyFinished

void notifyFinished()

notifyProcessed

void notifyProcessed()

notifyError

void notifyError(java.lang.Exception e)

notifyMessage

void notifyMessage(java.lang.String msg)

notifyStartedSubProcess

void notifyStartedSubProcess(int count)
Indicates a sub process has been started. This allows the client to either update its secondary progress bar or temporarily use the main progress bar to indicate the status of the sub process.

Parameters:
count - Size of the task

notifySubProcessed

void notifySubProcessed()