Package com._1c.g5.aef2.standard.models
Class ViewModelList<T>
- java.lang.Object
-
- com._1c.g5.aef2.validators.Validable
-
- com._1c.g5.aef2.models.Model
-
- com._1c.g5.aef2.models.EditableModel
-
- com._1c.g5.aef2.models.list.ListModel<T>
-
- com._1c.g5.aef2.standard.models.ViewModelList<T>
-
- All Implemented Interfaces:
IAttribute<org.eclipse.emf.ecore.EObject,org.eclipse.emf.ecore.EStructuralFeature>,IEditableModel,IEmfAttribute<org.eclipse.emf.ecore.EObject>,IModel,IEmfListAttribute<T,org.eclipse.emf.ecore.EObject>,IList<T>,IViewModelList<T>,IViewModelModel,IValidable,Iterable<T>,Collection<T>,List<T>
public class ViewModelList<T> extends ListModel<T> implements IEmfListAttribute<T,org.eclipse.emf.ecore.EObject>, IViewModelList<T>
The special list model implementation forIViewModel. It performs all operations within root component processing queue instead of immediate processing.- See Also:
EmfList
-
-
Constructor Summary
Constructors Constructor Description ViewModelList(IViewModel object, org.eclipse.emf.ecore.EStructuralFeature feature, IEventChannel channel)Instantiates a new ViewModel list.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidbeginInitialization()Sets the model initialization flag which means that all model operations performed beforeIViewModelModel.endInitialization()will not invoke notification events.voidcommit()Commits the changes to the data model.voiddispose()Disposes this model.voidendInitialization()Resets the model initialization flag that is set byIViewModelModel.beginInitialization().IChangegetChange()org.eclipse.emf.ecore.EObjectgetObject()Returns the object that keeps the attribute.org.eclipse.emf.ecore.EStructuralFeaturegetProperty()Returns the property.protected voidqueueNotifyListChanged()Queues the runnable that notifies the listeners about a change of this list.voidsetComponent(IComponent<?> component)Associate this model with the component.-
Methods inherited from class com._1c.g5.aef2.models.list.ListModel
add, add, addAll, addAll, addListListener, clear, contains, containsAll, createWorkingCopy, discard, fill, get, getCommittedList, getUncommittedList, indexOf, isElementEqual, isEmpty, isEqual, iterator, lastIndexOf, listIterator, listIterator, notifyListChanged, remove, remove, removeAll, removeListListener, retainAll, set, setCommittedList, setList, setUncommitedList, size, subList, toArray, toArray, toString
-
Methods inherited from class com._1c.g5.aef2.models.EditableModel
isEditable, setEditable
-
Methods inherited from class com._1c.g5.aef2.models.Model
addModelListener, beginExternalUpdate, checkOffline, checkOnline, endExternalUpdate, getComponent, getCurrentChangeOrigin, getRunnableQueue, isOnline, notifyModelChanged, notifyModelCommitted, removeModelListener, setOnline
-
Methods inherited from class com._1c.g5.aef2.validators.Validable
addValidator, getValidatorTarget, removeValidator, validate, validate
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface com._1c.g5.aef2.models.list.IList
addListListener, createWorkingCopy, fill, isEqual, removeListListener
-
Methods inherited from interface com._1c.g5.aef2.models.IModel
addModelListener, discard, getComponent, isOnline, removeModelListener
-
Methods inherited from interface com._1c.g5.aef2.validators.IValidable
addValidator, removeValidator, validate, validate
-
Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
-
-
-
Constructor Detail
-
ViewModelList
public ViewModelList(IViewModel object, org.eclipse.emf.ecore.EStructuralFeature feature, IEventChannel channel)
Instantiates a new ViewModel list.- Parameters:
object- the object, cannot benull.feature- the feature, cannot benull.channel- theIEventChannel, cannot benull.
-
-
Method Detail
-
beginInitialization
public void beginInitialization()
Description copied from interface:IViewModelModelSets the model initialization flag which means that all model operations performed beforeIViewModelModel.endInitialization()will not invoke notification events.- Specified by:
beginInitializationin interfaceIViewModelModel
-
endInitialization
public void endInitialization()
Description copied from interface:IViewModelModelResets the model initialization flag that is set byIViewModelModel.beginInitialization().- Specified by:
endInitializationin interfaceIViewModelModel
-
getChange
public IChange getChange()
-
dispose
public void dispose()
Description copied from interface:IModelDisposes this model.
-
commit
public void commit()
Description copied from interface:IModelCommits the changes to the data model.
-
getObject
public org.eclipse.emf.ecore.EObject getObject()
Description copied from interface:IAttributeReturns the object that keeps the attribute.- Specified by:
getObjectin interfaceIAttribute<org.eclipse.emf.ecore.EObject,org.eclipse.emf.ecore.EStructuralFeature>- Returns:
- the object that keeps the attribute.
-
getProperty
public org.eclipse.emf.ecore.EStructuralFeature getProperty()
Description copied from interface:IAttributeReturns the property.- Specified by:
getPropertyin interfaceIAttribute<org.eclipse.emf.ecore.EObject,org.eclipse.emf.ecore.EStructuralFeature>- Returns:
- the property.
-
setComponent
public void setComponent(IComponent<?> component)
Description copied from interface:IModelAssociate this model with the component.- Specified by:
setComponentin interfaceIModel- Overrides:
setComponentin classModel- Parameters:
component- the component to associate with.
-
queueNotifyListChanged
protected void queueNotifyListChanged()
Description copied from class:ListModelQueues the runnable that notifies the listeners about a change of this list. In fact it queues a runnable that performsListModel.notifyListChanged(ChangeOrigin).- Overrides:
queueNotifyListChangedin classListModel<T>
-
-