public static interface PleaseWaitProgressMonitor.ProgressMonitorDialog
Modifier and Type | Method and Description |
---|---|
void |
appendLogMessage(java.lang.String message)
Append a message to the progress log
|
void |
setCurrentAction(java.lang.String text)
Sets the current action that is done
|
void |
setCustomText(java.lang.String text)
Sets the description of what is done
|
void |
setIndeterminate(boolean newValue)
Display that the current progress cannot be determined
|
void |
setVisible(boolean visible)
Sets the visibility of this dialog
|
void |
updateProgress(int progress)
Updates the progress value to the specified progress.
|
void setVisible(boolean visible)
visible
- The visibility, true
to show it, false
to hide itvoid updateProgress(int progress)
progress
- The progress as integer. Between 0 and PleaseWaitProgressMonitor.PROGRESS_BAR_MAX
void setCustomText(java.lang.String text)
text
- The description of the taskvoid setCurrentAction(java.lang.String text)
text
- The current actionvoid setIndeterminate(boolean newValue)
newValue
- wether the progress cannot be determinedvoid appendLogMessage(java.lang.String message)
TODO Not implemented properly in background monitor, log message will get lost if progress runs in background
message
- The message