public class NullProgressMonitor extends Object implements ProgressMonitor
| Constructor and Description |
|---|
NullProgressMonitor() |
| 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.
|
public NullProgressMonitor()
public void beginTask(String name, int totalWork)
ProgressMonitorbeginTask in interface ProgressMonitorname - 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.public void done()
ProgressMonitordone in interface ProgressMonitorpublic void setTaskName(String name)
ProgressMonitorsetTaskName in interface ProgressMonitorname - the name (or description) of the main taskProgressMonitor.beginTask(java.lang.String, int)public void subTask(String name)
ProgressMonitorsubTask in interface ProgressMonitorname - the name (or description) of the subtaskpublic void worked(int work)
ProgressMonitorworked in interface ProgressMonitorwork - the number of work units just completedpublic boolean isCanceled()
ProgressMonitor
If this is true, the long-running operation should
throw an OperationCanceledException.
isCanceled in interface ProgressMonitortrue if cancellation has been requested,
and false otherwiseProgressMonitor.setCanceled(boolean)public void setCanceled(boolean canceled)
ProgressMonitorsetCanceled in interface ProgressMonitorcanceled - true indicates that cancelation has
been requested (but not necessarily acknowledged);
false clears this flagProgressMonitor.isCanceled()public void internalWorked(double worked)
ProgressMonitorNote: EclipseRCP is strange!
internalWorked in interface ProgressMonitorworked - the amount of work doneCopyright © 2013-2014. All Rights Reserved.