Package org.eclipse.epsilon.eol.function
Interface CheckedEolRunnable
-
- All Superinterfaces:
CheckedRunnable<EolRuntimeException>
,Runnable
- All Known Implementing Classes:
ConstraintAtom
,ConstraintContextAtom
,EvlAtom
,ExecutableRuleAtom
,GenerationRuleAtom
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface CheckedEolRunnable extends CheckedRunnable<EolRuntimeException>
- Since:
- 1.6
- Author:
- Sina Madani
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
run()
void
runThrows()
-
-
-
Method Detail
-
runThrows
void runThrows() throws EolRuntimeException
- Specified by:
runThrows
in interfaceCheckedRunnable<EolRuntimeException>
- Throws:
EolRuntimeException
-
run
default void run()
- Specified by:
run
in interfaceCheckedRunnable<EolRuntimeException>
- Specified by:
run
in interfaceRunnable
-
-