public interface ProgressRenderer
SwingRenderingProgressMonitor
to render progress information.Modifier and Type | Method and Description |
---|---|
void |
setCustomText(java.lang.String message)
Sets the custom text below the title
|
void |
setIndeterminate(boolean indeterminate)
Display the value as indeterminate value (unknown progress)
|
void |
setMaximum(int maximum)
Sets the maximum possible progress
|
void |
setTaskTitle(java.lang.String taskTitle)
Sets the title to display
|
void |
setValue(int value)
Sets the current progress
|
void setTaskTitle(java.lang.String taskTitle)
taskTitle
- The title textvoid setCustomText(java.lang.String message)
message
- The messagevoid setIndeterminate(boolean indeterminate)
indeterminate
- true
if the progress is unknownvoid setMaximum(int maximum)
maximum
- The minimum valuevoid setValue(int value)
value
- The progress, in range 0...maximumsetMaximum(int)