Uses of Interface
org.eclipse.core.runtime.ICoreRunnable
-
Packages that use ICoreRunnable Package Description org.eclipse.core.resources Provides basic support for managing a workspace and its resources.org.eclipse.core.runtime.jobs Provides core support for scheduling and interacting with background activity.org.eclipse.debug.ui.actions Provides a set of actions related to running and debugging applications.org.eclipse.ltk.core.refactoring Application programmer interface to implement semantic preserving workspace transformations. -
-
Uses of ICoreRunnable in org.eclipse.core.resources
Subinterfaces of ICoreRunnable in org.eclipse.core.resources Modifier and Type Interface Description interfaceIWorkspaceRunnableThis interface is structurally equivalent toICoreRunnable.Methods in org.eclipse.core.resources with parameters of type ICoreRunnable Modifier and Type Method Description voidIWorkspace. run(ICoreRunnable action, IProgressMonitor monitor)Runs the given action as an atomic workspace operation.voidIWorkspace. run(ICoreRunnable action, ISchedulingRule rule, int flags, IProgressMonitor monitor)Runs the given action as an atomic workspace operation. -
Uses of ICoreRunnable in org.eclipse.core.runtime.jobs
Methods in org.eclipse.core.runtime.jobs with parameters of type ICoreRunnable Modifier and Type Method Description static JobJob. create(String name, ICoreRunnable runnable)Creates a new Job that will execute the provided runnable when it runs.static JobJob. createSystem(String name, ICoreRunnable runnable)Creates a new systemJobwith the given name that will execute the provided runnable when it runs.static JobJob. createSystem(ICoreRunnable runnable)Deprecated.useJob.createSystem(String, ICoreRunnable)instead -
Uses of ICoreRunnable in org.eclipse.debug.ui.actions
Classes in org.eclipse.debug.ui.actions that implement ICoreRunnable Modifier and Type Class Description classRunToLineHandlerHandles a run to line operation. -
Uses of ICoreRunnable in org.eclipse.ltk.core.refactoring
Classes in org.eclipse.ltk.core.refactoring that implement ICoreRunnable Modifier and Type Class Description classCheckConditionsOperationOperation that, when run, checks the preconditions of theRefactoringpassed on creation.classCreateChangeOperationOperation that, when performed, creates aChangeobject for a given refactoring.classPerformChangeOperationOperation that, when run, performs aChangeobject.classPerformRefactoringHistoryOperationOperation that, when run, executes a series of refactoring sequentially.classPerformRefactoringOperationOperation that, when run, executes a refactoring.
-