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
public interface IViewModelModel extends IModel
The contract ofIModel
for view model.- See Also:
ViewModelValue
,ViewModelList
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
beginInitialization()
Sets the model initialization flag which means that all model operations performed beforeendInitialization()
will not invoke notification events.void
endInitialization()
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 Detail
-
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()
.
-
-