| org.columba.api.command.IWorkerStatusController
All known Subclasses: org.columba.core.command.NullWorkerStatusController, org.columba.core.command.Worker,
IWorkerStatusController | public interface IWorkerStatusController (Code) | | |
cancel | public void cancel()(Code) | | |
cancelled | public boolean cancelled()(Code) | | |
clearDisplayText | public void clearDisplayText()(Code) | | Clears the text displayed in the status bar - without any delay
|
clearDisplayTextWithDelay | public void clearDisplayTextWithDelay()(Code) | | Clears the text displayed in the status bar - with a given delay.
The delay used is 500 ms.
If a new text is set within this delay, the text is not cleared.
|
getDisplayText | public String getDisplayText()(Code) | | Returns the text currently displayed in the status bar
|
getProgessBarMaximum | public int getProgessBarMaximum()(Code) | | Returns the max. value for the progress bar
|
getProgressBarValue | public int getProgressBarValue()(Code) | | Returns the current value for the progress bar
|
getTimeStamp | public int getTimeStamp()(Code) | | |
resetProgressBar | public void resetProgressBar()(Code) | | Sets the progress bar value to zero, i.e. clears the progress bar.
This is the same as calling setProgressBarValue(0)
|
setDisplayText | public void setDisplayText(String text)(Code) | | Set the text to be displayed in the status bar
Parameters: text - Text to display in status bar |
setProgressBarMaximum | public void setProgressBarMaximum(int max)(Code) | | Sets the maximum value for the progress bar.
Parameters: max - New max. value for progress bar |
setProgressBarValue | public void setProgressBarValue(int value)(Code) | | Sets the current value of the progress bar.
Parameters: value - New current value of progress bar |
|
|