Interface IModelReloadListener<M extends IModel>

Type Parameters:
M - the model type

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 Summary

    Modifier and Type
    Method
    Description
    void
    Is called to notify that model was not successfully reloaded, e.g., due to syntactic or semantic errors.
  • Method Details

    • 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