Package org.eclipse.jface.util
Interface ISafeRunnableRunner
-
public interface ISafeRunnableRunner
Runs a safe runnables.Clients may provide their own implementation to change how safe runnables are run from within JFace.
- Since:
- 3.1
- See Also:
SafeRunnable.getRunner()
,SafeRunnable.setRunner(ISafeRunnableRunner)
,SafeRunnable.run(ISafeRunnable)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
run(ISafeRunnable code)
Runs the runnable.
-
-
-
Method Detail
-
run
void run(ISafeRunnable code)
Runs the runnable. AllISafeRunnableRunners
must catch any exception thrown by theISafeRunnable
and pass the exception toISafeRunnable.handleException()
.- Parameters:
code
- the code executed as a save runnable- See Also:
SafeRunnable.run(ISafeRunnable)
-
-