Interface IModelReloadListener<M extends IModel>

  • Type Parameters:
    M - the model type
    All Known Implementing Classes:
    BuildModelListener, TemplateModelListener, VarModelListener

    public interface IModelReloadListener<M extends IModel>
    Defines a model listener in order to inform interested parties about model reloads. Currently, this class does only notify about failed reloads as successful updates are notified via IModelListener.
    Author:
    Holger Eichelberger
    • Method Detail

      • notifyReloadFailed

        void notifyReloadFailed​(M model)
        Is called to notify that model was not successfully reloaded, e.g., due to syntactic or semantic errors. Please note that successful reloads are notified through IModelListener.
        Parameters:
        model - the model that was not updated