/** * 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.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.EObjectImpl; import org.eclipse.emf.ecore.util.EObjectContainmentEList; import org.eclipse.emf.ecore.util.InternalEList; import org.yakindu.base.types.Declaration; import org.yakindu.base.types.Event; import org.yakindu.base.types.Property; import org.yakindu.sct.model.sgraph.Reaction; import org.yakindu.sct.model.sgraph.SGraphPackage; import org.yakindu.sct.model.sgraph.Scope; import org.yakindu.sct.model.sgraph.util.DerivedSubsetEObjectEList; /** * <!-- begin-user-doc --> An implementation of the model object ' * <em><b>Scope</b></em>'. <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.yakindu.sct.model.sgraph.impl.ScopeImpl#getDeclarations <em>Declarations</em>}</li> * <li>{@link org.yakindu.sct.model.sgraph.impl.ScopeImpl#getEvents <em>Events</em>}</li> * <li>{@link org.yakindu.sct.model.sgraph.impl.ScopeImpl#getVariables <em>Variables</em>}</li> * <li>{@link org.yakindu.sct.model.sgraph.impl.ScopeImpl#getReactions <em>Reactions</em>}</li> * </ul> * * @generated */ public class ScopeImpl extends EObjectImpl implements Scope { /** * <!-- 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 #getDeclarations() <em>Declarations</em>} * ' containment reference list. <!-- begin-user-doc --> <!-- end-user-doc * --> * * @see #getDeclarations() * @generated * @ordered */ protected EList<Declaration> declarations; /** * The cached value of the '{@link #getReactions() <em>Reactions</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getReactions() * @generated * @ordered */ protected EList<Reaction> reactions; /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ protected ScopeImpl() { super(); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return SGraphPackage.Literals.SCOPE; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ public EList<Declaration> getDeclarations() { if (declarations == null) { declarations = new EObjectContainmentEList.Resolving<Declaration>(Declaration.class, this, SGraphPackage.SCOPE__DECLARATIONS); } return declarations; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated NOT */ public EList<Event> getEvents() { return new DerivedSubsetEObjectEList<Event>(Event.class, this, SGraphPackage.SCOPE__EVENTS, SGraphPackage.SCOPE__DECLARATIONS); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated NOT */ public EList<Property> getVariables() { return new DerivedSubsetEObjectEList<Property>(Property.class, this, SGraphPackage.SCOPE__VARIABLES, SGraphPackage.SCOPE__DECLARATIONS); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<Reaction> getReactions() { if (reactions == null) { reactions = new EObjectContainmentEList.Resolving<Reaction>(Reaction.class, this, SGraphPackage.SCOPE__REACTIONS); } return reactions; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case SGraphPackage.SCOPE__DECLARATIONS: return ((InternalEList<?>)getDeclarations()).basicRemove(otherEnd, msgs); case SGraphPackage.SCOPE__REACTIONS: return ((InternalEList<?>)getReactions()).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 SGraphPackage.SCOPE__DECLARATIONS: return getDeclarations(); case SGraphPackage.SCOPE__EVENTS: return getEvents(); case SGraphPackage.SCOPE__VARIABLES: return getVariables(); case SGraphPackage.SCOPE__REACTIONS: return getReactions(); } 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.SCOPE__DECLARATIONS: getDeclarations().clear(); getDeclarations().addAll((Collection<? extends Declaration>)newValue); return; case SGraphPackage.SCOPE__REACTIONS: getReactions().clear(); getReactions().addAll((Collection<? extends Reaction>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case SGraphPackage.SCOPE__DECLARATIONS: getDeclarations().clear(); return; case SGraphPackage.SCOPE__REACTIONS: getReactions().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case SGraphPackage.SCOPE__DECLARATIONS: return declarations != null && !declarations.isEmpty(); case SGraphPackage.SCOPE__EVENTS: return !getEvents().isEmpty(); case SGraphPackage.SCOPE__VARIABLES: return !getVariables().isEmpty(); case SGraphPackage.SCOPE__REACTIONS: return reactions != null && !reactions.isEmpty(); } return super.eIsSet(featureID); } } // ScopeImpl