/** * Copyright (c) 2011 committers of YAKINDU and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * Contributors: * committers of YAKINDU - initial API and implementation * */ package org.yakindu.sct.model.sgraph.impl; import java.util.Collection; import org.eclipse.emf.common.notify.Notification; 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.ENotificationImpl; import org.eclipse.emf.ecore.util.EObjectContainmentWithInverseEList; import org.eclipse.emf.ecore.util.EcoreUtil; import org.eclipse.emf.ecore.util.InternalEList; import org.yakindu.base.base.impl.NamedElementImpl; import org.yakindu.sct.model.sgraph.CompositeElement; import org.yakindu.sct.model.sgraph.Region; import org.yakindu.sct.model.sgraph.SGraphPackage; import org.yakindu.sct.model.sgraph.Vertex; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Region</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.yakindu.sct.model.sgraph.impl.RegionImpl#getVertices <em>Vertices</em>}</li> * <li>{@link org.yakindu.sct.model.sgraph.impl.RegionImpl#getComposite <em>Composite</em>}</li> * </ul> * * @generated */ public class RegionImpl extends NamedElementImpl implements Region { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static final String copyright = "Copyright (c) 2011 committers of YAKINDU and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\nContributors:\r\ncommitters of YAKINDU - initial API and implementation\r\n"; /** * The cached value of the '{@link #getVertices() <em>Vertices</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getVertices() * @generated * @ordered */ protected EList<Vertex> vertices; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected RegionImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return SGraphPackage.Literals.REGION; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<Vertex> getVertices() { if (vertices == null) { vertices = new EObjectContainmentWithInverseEList.Resolving<Vertex>(Vertex.class, this, SGraphPackage.REGION__VERTICES, SGraphPackage.VERTEX__PARENT_REGION); } return vertices; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public CompositeElement getComposite() { if (eContainerFeatureID() != SGraphPackage.REGION__COMPOSITE) return null; return (CompositeElement)eContainer(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public CompositeElement basicGetComposite() { if (eContainerFeatureID() != SGraphPackage.REGION__COMPOSITE) return null; return (CompositeElement)eInternalContainer(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetComposite(CompositeElement newComposite, NotificationChain msgs) { msgs = eBasicSetContainer((InternalEObject)newComposite, SGraphPackage.REGION__COMPOSITE, msgs); return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setComposite(CompositeElement newComposite) { if (newComposite != eInternalContainer() || (eContainerFeatureID() != SGraphPackage.REGION__COMPOSITE && newComposite != null)) { if (EcoreUtil.isAncestor(this, newComposite)) throw new IllegalArgumentException("Recursive containment not allowed for " + toString()); NotificationChain msgs = null; if (eInternalContainer() != null) msgs = eBasicRemoveFromContainer(msgs); if (newComposite != null) msgs = ((InternalEObject)newComposite).eInverseAdd(this, SGraphPackage.COMPOSITE_ELEMENT__REGIONS, CompositeElement.class, msgs); msgs = basicSetComposite(newComposite, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, SGraphPackage.REGION__COMPOSITE, newComposite, newComposite)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") @Override public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case SGraphPackage.REGION__VERTICES: return ((InternalEList<InternalEObject>)(InternalEList<?>)getVertices()).basicAdd(otherEnd, msgs); case SGraphPackage.REGION__COMPOSITE: if (eInternalContainer() != null) msgs = eBasicRemoveFromContainer(msgs); return basicSetComposite((CompositeElement)otherEnd, msgs); } return super.eInverseAdd(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case SGraphPackage.REGION__VERTICES: return ((InternalEList<?>)getVertices()).basicRemove(otherEnd, msgs); case SGraphPackage.REGION__COMPOSITE: return basicSetComposite(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eBasicRemoveFromContainerFeature(NotificationChain msgs) { switch (eContainerFeatureID()) { case SGraphPackage.REGION__COMPOSITE: return eInternalContainer().eInverseRemove(this, SGraphPackage.COMPOSITE_ELEMENT__REGIONS, CompositeElement.class, msgs); } return super.eBasicRemoveFromContainerFeature(msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case SGraphPackage.REGION__VERTICES: return getVertices(); case SGraphPackage.REGION__COMPOSITE: if (resolve) return getComposite(); return basicGetComposite(); } 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 SGraphPackage.REGION__VERTICES: getVertices().clear(); getVertices().addAll((Collection<? extends Vertex>)newValue); return; case SGraphPackage.REGION__COMPOSITE: setComposite((CompositeElement)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case SGraphPackage.REGION__VERTICES: getVertices().clear(); return; case SGraphPackage.REGION__COMPOSITE: setComposite((CompositeElement)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case SGraphPackage.REGION__VERTICES: return vertices != null && !vertices.isEmpty(); case SGraphPackage.REGION__COMPOSITE: return basicGetComposite() != null; } return super.eIsSet(featureID); } } //RegionImpl