org.eclipse.jface.operation |
|
Java Source File Name | Type | Comment |
AccumulatingProgressMonitor.java | Class | A progress monitor that accumulates worked and subtask
calls in the following way by wrapping a standard progress monitor:
- When a
worked or subtask call occurs the first time,
the progress monitor posts a runnable into the asynchronous SWT event queue.
- Subsequent calls to
worked or subtask do not post
a new runnable as long as a previous runnable still exists in the SWT event
queue. |
IRunnableContext.java | Interface | Interface for UI components which can execute a long-running operation
in the form of an IRunnableWithProgress . |
IRunnableWithProgress.java | Interface | The IRunnableWithProgress interface should be implemented by any
class whose instances are intended to be executed as a long-running operation. |
ModalContext.java | Class | Utility class for supporting modal operations.
The runnable passed to the run method is executed in a
separate thread, depending on the value of the passed fork argument. |