/** */ package net.certware.intent.intentSpecification.impl; import java.util.Collection; import net.certware.intent.intentSpecification.DocItem; import net.certware.intent.intentSpecification.Document; import net.certware.intent.intentSpecification.IntentSpecificationPackage; import org.eclipse.emf.common.notify.NotificationChain; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.MinimalEObjectImpl; import org.eclipse.emf.ecore.util.EObjectContainmentEList; import org.eclipse.emf.ecore.util.InternalEList; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Document</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link net.certware.intent.intentSpecification.impl.DocumentImpl#getEntries <em>Entries</em>}</li> * </ul> * * @generated */ public class DocumentImpl extends MinimalEObjectImpl.Container implements Document { /** * The cached value of the '{@link #getEntries() <em>Entries</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getEntries() * @generated * @ordered */ protected EList<DocItem> entries; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected DocumentImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return IntentSpecificationPackage.Literals.DOCUMENT; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<DocItem> getEntries() { if (entries == null) { entries = new EObjectContainmentEList<DocItem>(DocItem.class, this, IntentSpecificationPackage.DOCUMENT__ENTRIES); } return entries; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case IntentSpecificationPackage.DOCUMENT__ENTRIES: return ((InternalEList<?>)getEntries()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case IntentSpecificationPackage.DOCUMENT__ENTRIES: return getEntries(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case IntentSpecificationPackage.DOCUMENT__ENTRIES: getEntries().clear(); getEntries().addAll((Collection<? extends DocItem>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case IntentSpecificationPackage.DOCUMENT__ENTRIES: getEntries().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case IntentSpecificationPackage.DOCUMENT__ENTRIES: return entries != null && !entries.isEmpty(); } return super.eIsSet(featureID); } } //DocumentImpl