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 viaIModelListener.- Author:
- Holger Eichelberger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidnotifyReloadFailed(M model)Is called to notify thatmodelwas not successfully reloaded, e.g., due to syntactic or semantic errors.
-
-
-
Method Detail
-
notifyReloadFailed
void notifyReloadFailed(M model)
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
-
-