public class SlicedProgressMonitor extends java.lang.Object implements IProgressMonitor
SlicedProgressMonitor that synchronizes on the given monitor to report workUNKNOWN| Constructor and Description |
|---|
SlicedProgressMonitor(IProgressMonitor monitor,
int totalWork) |
| Modifier and Type | Method and Description |
|---|---|
void |
beginTask(java.lang.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.
|
java.lang.String |
getName() |
java.lang.String |
getSubTaskName() |
void |
internalWorked(double internalWork)
Internal method to handle scaling correctly.
|
boolean |
isCanceled()
Returns whether cancelation of current operation has been requested.
|
void |
setCanceled(boolean value)
Sets the cancel state to the given value.
|
void |
setTaskName(java.lang.String name)
Sets the task name to the given value.
|
void |
subTask(java.lang.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.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitclearBlocked, done, nullSafe, setBlocked, slicepublic SlicedProgressMonitor(IProgressMonitor monitor, int totalWork)
public void beginTask(java.lang.String name,
int totalWork)
IProgressMonitorbeginTask in interface IProgressMonitorname - 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()
IProgressMonitordone in interface IProgressMonitorpublic void internalWorked(double internalWork)
IProgressMonitorworked(int).internalWorked in interface IProgressMonitorinternalWork - the amount of work donepublic boolean isCanceled()
IProgressMonitorisCanceled in interface IProgressMonitortrue if cancellation has been requested,
and false otherwiseIProgressMonitor.setCanceled(boolean)public void setCanceled(boolean value)
IProgressMonitorsetCanceled in interface IProgressMonitorvalue - true indicates that cancelation has
been requested (but not necessarily acknowledged);
false clears this flagIProgressMonitor.isCanceled()public void setTaskName(java.lang.String name)
IProgressMonitorsetTaskName in interface IProgressMonitorname - the name (or description) of the main taskIProgressMonitor.beginTask(java.lang.String, int)public void subTask(java.lang.String name)
IProgressMonitorsubTask in interface IProgressMonitorname - the name (or description) of the subtaskpublic void worked(int work)
IProgressMonitorworked in interface IProgressMonitorwork - a non-negative number of work units just completedpublic java.lang.String getName()
public java.lang.String getSubTaskName()