Package com._1c.g5.aef2.standard.models
Interface IViewModelModel
- All Superinterfaces:
IModel
,IValidable
- All Known Subinterfaces:
IViewModelList<E>
,IViewModelValue<T>
- All Known Implementing Classes:
ViewModelList
,ViewModelValue
The contract of
IModel
for view model.- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Sets the model initialization flag which means that all model operations performed beforeendInitialization()
will not invoke notification events.void
Resets the model initialization flag that is set bybeginInitialization()
.Methods inherited from interface com._1c.g5.aef2.models.IModel
addModelListener, commit, createWorkingCopy, discard, dispose, getChange, getComponent, isOnline, removeModelListener, setComponent
Methods inherited from interface com._1c.g5.aef2.validators.IValidable
addValidator, removeValidator, validate, validate
-
Method Details
-
beginInitialization
void beginInitialization()Sets the model initialization flag which means that all model operations performed beforeendInitialization()
will not invoke notification events. -
endInitialization
void endInitialization()Resets the model initialization flag that is set bybeginInitialization()
.
-