Interface ProgressIndicator
-
- All Known Subinterfaces:
ScriptExecutorProgressIndicator
,TableCopyProgressIndicator
- All Known Implementing Classes:
LoggingScriptExecutorProgressIndicator
,LoggingTableCopyProgressIndicator
,SwingScriptExecutorProgressIndicator
,SwingTableCopyProgressIndicator
,TimingProgressIndicator
public interface ProgressIndicator
Common interface.© 2013-2020 akquinet tech@spree
- Author:
- M. Dahm
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
debug(String text)
void
endExecution(int numberOfFinishedItems)
void
endProcess()
void
finalizeIndicator()
void
info(String text)
void
initializeIndicator()
void
startExecution()
void
startProcess(int totalNumberOfProcesses)
void
updateTimers()
void
warn(String string)
-
-
-
Method Detail
-
initializeIndicator
void initializeIndicator()
-
startProcess
void startProcess(int totalNumberOfProcesses)
-
startExecution
void startExecution()
-
endExecution
void endExecution(int numberOfFinishedItems)
-
endProcess
void endProcess()
-
updateTimers
void updateTimers()
-
finalizeIndicator
void finalizeIndicator()
-
warn
void warn(String string)
-
info
void info(String text)
-
debug
void debug(String text)
-
-