Package org.eclipse.core.runtime
Class ProgressMonitorWrapper
- java.lang.Object
-
- org.eclipse.core.runtime.ProgressMonitorWrapper
-
- All Implemented Interfaces:
IProgressMonitor
,IProgressMonitorWithBlocking
- Direct Known Subclasses:
SubProgressMonitor
public abstract class ProgressMonitorWrapper extends Object implements IProgressMonitor, IProgressMonitorWithBlocking
An abstract wrapper around a progress monitor which, unless overridden, forwardsIProgressMonitor
andIProgressMonitorWithBlocking
methods to the wrapped progress monitor.This class can be used without OSGi running.
Clients may subclass.
-
-
Field Summary
-
Fields inherited from interface org.eclipse.core.runtime.IProgressMonitor
UNKNOWN
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
ProgressMonitorWrapper(IProgressMonitor monitor)
Creates a new wrapper around the given monitor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
beginTask(String name, int totalWork)
This implementation of aIProgressMonitor
method forwards to the wrapped progress monitor.void
clearBlocked()
This implementation of aIProgressMonitorWithBlocking
method forwards to the wrapped progress monitor.void
done()
This implementation of aIProgressMonitor
method forwards to the wrapped progress monitor.IProgressMonitor
getWrappedProgressMonitor()
Returns the wrapped progress monitor.void
internalWorked(double work)
This implementation of aIProgressMonitor
method forwards to the wrapped progress monitor.boolean
isCanceled()
This implementation of aIProgressMonitor
method forwards to the wrapped progress monitor.void
setBlocked(IStatus reason)
This implementation of aIProgressMonitorWithBlocking
method forwards to the wrapped progress monitor.void
setCanceled(boolean b)
This implementation of aIProgressMonitor
method forwards to the wrapped progress monitor.void
setTaskName(String name)
This implementation of aIProgressMonitor
method forwards to the wrapped progress monitor.void
subTask(String name)
This implementation of aIProgressMonitor
method forwards to the wrapped progress monitor.void
worked(int work)
This implementation of aIProgressMonitor
method forwards to the wrapped progress monitor.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.eclipse.core.runtime.IProgressMonitor
slice
-
-
-
-
Constructor Detail
-
ProgressMonitorWrapper
protected ProgressMonitorWrapper(IProgressMonitor monitor)
Creates a new wrapper around the given monitor.- Parameters:
monitor
- the progress monitor to forward to
-
-
Method Detail
-
beginTask
public void beginTask(String name, int totalWork)
This implementation of aIProgressMonitor
method forwards to the wrapped progress monitor. Clients may override this method to do additional processing.- Specified by:
beginTask
in interfaceIProgressMonitor
- Parameters:
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 isUNKNOWN
the implementation is free to indicate progress in a way which doesn't require the total number of work units in advance.- See Also:
IProgressMonitor.beginTask(String, int)
-
clearBlocked
public void clearBlocked()
This implementation of aIProgressMonitorWithBlocking
method forwards to the wrapped progress monitor. Clients may override this method to do additional processing.- Specified by:
clearBlocked
in interfaceIProgressMonitor
- Since:
- 3.0
- See Also:
IProgressMonitor.clearBlocked()
-
done
public void done()
This implementation of aIProgressMonitor
method forwards to the wrapped progress monitor. Clients may override this method to do additional processing.- Specified by:
done
in interfaceIProgressMonitor
- See Also:
IProgressMonitor.done()
-
getWrappedProgressMonitor
public IProgressMonitor getWrappedProgressMonitor()
Returns the wrapped progress monitor.- Returns:
- the wrapped progress monitor
-
internalWorked
public void internalWorked(double work)
This implementation of aIProgressMonitor
method forwards to the wrapped progress monitor. Clients may override this method to do additional processing.- Specified by:
internalWorked
in interfaceIProgressMonitor
- Parameters:
work
- the amount of work done- See Also:
IProgressMonitor.internalWorked(double)
-
isCanceled
public boolean isCanceled()
This implementation of aIProgressMonitor
method forwards to the wrapped progress monitor. Clients may override this method to do additional processing.- Specified by:
isCanceled
in interfaceIProgressMonitor
- Returns:
true
if cancellation has been requested, andfalse
otherwise- See Also:
IProgressMonitor.isCanceled()
-
setBlocked
public void setBlocked(IStatus reason)
This implementation of aIProgressMonitorWithBlocking
method forwards to the wrapped progress monitor. Clients may override this method to do additional processing.- Specified by:
setBlocked
in interfaceIProgressMonitor
- Parameters:
reason
- an optional status object whose message describes the reason why this operation is blocked, ornull
if this information is not available.- Since:
- 3.0
- See Also:
IProgressMonitor.setBlocked(IStatus)
-
setCanceled
public void setCanceled(boolean b)
This implementation of aIProgressMonitor
method forwards to the wrapped progress monitor. Clients may override this method to do additional processing.- Specified by:
setCanceled
in interfaceIProgressMonitor
- Parameters:
b
-true
indicates that cancelation has been requested (but not necessarily acknowledged);false
clears this flag- See Also:
IProgressMonitor.setCanceled(boolean)
-
setTaskName
public void setTaskName(String name)
This implementation of aIProgressMonitor
method forwards to the wrapped progress monitor. Clients may override this method to do additional processing.- Specified by:
setTaskName
in interfaceIProgressMonitor
- Parameters:
name
- the name (or description) of the main task- See Also:
IProgressMonitor.setTaskName(String)
-
subTask
public void subTask(String name)
This implementation of aIProgressMonitor
method forwards to the wrapped progress monitor. Clients may override this method to do additional processing.- Specified by:
subTask
in interfaceIProgressMonitor
- Parameters:
name
- the name (or description) of the subtask- See Also:
IProgressMonitor.subTask(String)
-
worked
public void worked(int work)
This implementation of aIProgressMonitor
method forwards to the wrapped progress monitor. Clients may override this method to do additional processing.- Specified by:
worked
in interfaceIProgressMonitor
- Parameters:
work
- a non-negative number of work units just completed- See Also:
IProgressMonitor.worked(int)
-
-