public interface IProgressMonitor
Modifier and Type | Method and Description |
---|---|
void |
end()
Ends up the progress.
|
void |
setDescription(String description)
Sets a description with information about what is currently being done by
the job
|
void |
setPosition(int position)
Sets the position of the progress monitor to position.
|
void |
start(int steps)
Called to initialize the progress monitor.
|
void |
step()
Increments the progress monitor by one.
|
void |
step(String description)
Increments the progress monitor by one and also sets a description of
what is currently being done by the job.
|
void start(int steps)
steps
- count of steps that are needed to complete the jobvoid step()
void setPosition(int position)
position
- the position to which the progress should be setvoid step(String description)
description
- description what the job actual doesvoid setDescription(String description)
description
- description what the job actual doesvoid end()