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 TypeMethodDescriptionvoidnotifyReloadFailed(M model) Is called to notify thatmodelwas not successfully reloaded, e.g., due to syntactic or semantic errors.
-
Method Details
-
notifyReloadFailed
Is called to notify thatmodelwas not successfully reloaded, e.g., due to syntactic or semantic errors. Please note that successful reloads are notified throughIModelListener.- Parameters:
model- the model that was not updated
-