public interface ProgressMonitor
| Modifier and Type | Method and Description |
|---|---|
void |
beginTask(String name,
int totalWork)
Notifies that the main task is beginning.
|
void |
done()
Notifies that the work is done; that is, either the main task is completed
or the user canceled it.
|
void |
internalWorked(double worked)
Internal method to handle scaling correctly.
|
boolean |
isCanceled()
Returns whether cancelation of current operation has been requested.
|
void |
setCanceled(boolean canceled)
Sets the cancel state to the given value.
|
void |
setTaskName(String name)
Sets the task name to the given value.
|
void |
subTask(String name)
Notifies that a subtask of the main task is beginning.
|
void |
worked(int work)
Notifies that a given number of work unit of the main task
has been completed.
|
void beginTask(String name, int totalWork)
name - the name (or description) of the main tasktotalWork - the total number of work units into which
the main task is been subdivided. If the value is UNKNOWN
the implementation is free to indicate progress in a way which
doesn't require the total number of work units in advance.void done()
boolean isCanceled()
If this is true, the long-running operation should
throw an OperationCanceledException.
true if cancellation has been requested,
and false otherwisesetCanceled(boolean)void setCanceled(boolean canceled)
canceled - true indicates that cancelation has
been requested (but not necessarily acknowledged);
false clears this flagisCanceled()void internalWorked(double worked)
Note: EclipseRCP is strange!
worked - the amount of work donevoid setTaskName(String name)
name - the name (or description) of the main taskbeginTask(java.lang.String, int)void subTask(String name)
name - the name (or description) of the subtaskvoid worked(int work)
work - the number of work units just completedCopyright © 2013-2014. All Rights Reserved.