| java.lang.Object org.eclipse.ui.actions.WorkspaceModifyOperation org.eclipse.ui.actions.WorkspaceModifyDelegatingOperation
WorkspaceModifyDelegatingOperation | public class WorkspaceModifyDelegatingOperation extends WorkspaceModifyOperation (Code) | | An operation which delegates its work to a runnable that modifies the
workspace.
This class may be instantiated; it is not intended to be subclassed.
|
Constructor Summary | |
public | WorkspaceModifyDelegatingOperation(IRunnableWithProgress content, ISchedulingRule rule) Creates a new operation which will delegate its work to the given
runnable using the provided scheduling rule. | public | WorkspaceModifyDelegatingOperation(IRunnableWithProgress content) Creates a new operation which will delegate its work to the given
runnable. |
Method Summary | |
protected void | execute(IProgressMonitor monitor) |
WorkspaceModifyDelegatingOperation | public WorkspaceModifyDelegatingOperation(IRunnableWithProgress content, ISchedulingRule rule)(Code) | | Creates a new operation which will delegate its work to the given
runnable using the provided scheduling rule.
Parameters: content - the runnable to delegate to when this operation is executed Parameters: rule - The ISchedulingRule to use or null . |
WorkspaceModifyDelegatingOperation | public WorkspaceModifyDelegatingOperation(IRunnableWithProgress content)(Code) | | Creates a new operation which will delegate its work to the given
runnable. Schedule using the supplied s
Parameters: content - the runnable to delegate to when this operation is executed |
|
|