Interface IVilExecutionListener

  • All Known Implementing Classes:
    ConfigurationHeaderMenu

    public interface IVilExecutionListener
    Part of the VilExecutionThread to inform other threads when the instantiation was finished or aborted.
    Author:
    El-Sharkawy
    • Method Detail

      • vilExecutionAborted

        void vilExecutionAborted​(PLPInfo plp,
                                 VilException exc)
        VIL execution (instantiation) was aborted through an error.
        Parameters:
        plp - The PLPInfo, 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 - The PLPInfo, which was be instantiated
        instantiationSuccessfull - trueinstantiation finished successfully, false instantiation was aborted, e.g., by the user.