/** * generated by Xtext 2.21.0 */ package hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.impl; import hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ApplicationConfigurationPackage; import hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.PartialModelEntry; import hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.PartialModelSpecification; import java.util.Collection; 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.util.EObjectContainmentEList; import org.eclipse.emf.ecore.util.InternalEList; /** * * An implementation of the model object 'Partial Model Specification'. * *

* The following features are implemented: *

* * * @generated */ public class PartialModelSpecificationImpl extends PartialModelImpl implements PartialModelSpecification { /** * The cached value of the '{@link #getEntry() Entry}' containment reference list. * * * @see #getEntry() * @generated * @ordered */ protected EList entry; /** * * * @generated */ protected PartialModelSpecificationImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return ApplicationConfigurationPackage.Literals.PARTIAL_MODEL_SPECIFICATION; } /** * * * @generated */ @Override public EList getEntry() { if (entry == null) { entry = new EObjectContainmentEList(PartialModelEntry.class, this, ApplicationConfigurationPackage.PARTIAL_MODEL_SPECIFICATION__ENTRY); } return entry; } /** * * * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case ApplicationConfigurationPackage.PARTIAL_MODEL_SPECIFICATION__ENTRY: return ((InternalEList)getEntry()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case ApplicationConfigurationPackage.PARTIAL_MODEL_SPECIFICATION__ENTRY: return getEntry(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case ApplicationConfigurationPackage.PARTIAL_MODEL_SPECIFICATION__ENTRY: getEntry().clear(); getEntry().addAll((Collection)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case ApplicationConfigurationPackage.PARTIAL_MODEL_SPECIFICATION__ENTRY: getEntry().clear(); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case ApplicationConfigurationPackage.PARTIAL_MODEL_SPECIFICATION__ENTRY: return entry != null && !entry.isEmpty(); } return super.eIsSet(featureID); } } //PartialModelSpecificationImpl