Interface IVilExecutionListener
-
public interface IVilExecutionListenerPart of theVilExecutionThreadto inform other threads when the instantiation was finished or aborted.- Author:
- El-Sharkawy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvilExecutionAborted(PLPInfo plp, net.ssehub.easy.instantiation.core.model.common.VilException exc)VIL execution (instantiation) was aborted through an error.voidvilExecutionFinished(PLPInfo plp, boolean instantiationSuccessfull)VIL execution (instantiation) was finished.
-
-
-
Method Detail
-
vilExecutionAborted
void vilExecutionAborted(PLPInfo plp, net.ssehub.easy.instantiation.core.model.common.VilException exc)
VIL execution (instantiation) was aborted through an error.- Parameters:
plp- ThePLPInfo, which should be instantiated and is the source for this error.exc- The error which lead to the abortion.
-
vilExecutionFinished
void vilExecutionFinished(PLPInfo plp, boolean instantiationSuccessfull)
VIL execution (instantiation) was finished. This is usually the case if script execution reached the end of the script, but may also be the case if the user aborted the instantiation.- Parameters:
plp- ThePLPInfo, which was be instantiatedinstantiationSuccessfull- trueinstantiation finished successfully, false instantiation was aborted, e.g., by the user.
-
-