Package org.eclipse.jface.util
Interface ISafeRunnableRunner
-
public interface ISafeRunnableRunnerRuns 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 voidrun(ISafeRunnable code)Runs the runnable.
-
-
-
Method Detail
-
run
void run(ISafeRunnable code)
Runs the runnable. AllISafeRunnableRunnersmust catch any exception thrown by theISafeRunnableand pass the exception toISafeRunnable.handleException().- Parameters:
code- the code executed as a save runnable- See Also:
SafeRunnable.run(ISafeRunnable)
-
-