/** * Copyright (c) 2013 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.simulation.core.sruntime.impl; import java.util.Collection; import java.util.List; 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; import org.yakindu.sct.simulation.core.sruntime.CompositeSlot; import org.yakindu.sct.simulation.core.sruntime.ExecutionSlot; import org.yakindu.sct.simulation.core.sruntime.SRuntimePackage; /** * <!-- begin-user-doc --> An implementation of the model object ' * <em><b>Composite Slot</b></em>'. <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.yakindu.sct.simulation.core.sruntime.impl.CompositeSlotImpl#getSlots <em>Slots</em>}</li> * </ul> * * @generated */ public class CompositeSlotImpl extends ExecutionSlotImpl implements CompositeSlot { /** * The cached value of the '{@link #getSlots() <em>Slots</em>}' containment reference list. * <!-- begin-user-doc --> <!-- end-user-doc --> * @see #getSlots() * @generated * @ordered */ protected EList<ExecutionSlot> slots; /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ public CompositeSlotImpl() { super(); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return SRuntimePackage.Literals.COMPOSITE_SLOT; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ public List<ExecutionSlot> getSlots() { if (slots == null) { slots = new EObjectContainmentEList<ExecutionSlot>(ExecutionSlot.class, this, SRuntimePackage.COMPOSITE_SLOT__SLOTS); } return slots; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case SRuntimePackage.COMPOSITE_SLOT__SLOTS: return ((InternalEList<?>)getSlots()).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 SRuntimePackage.COMPOSITE_SLOT__SLOTS: return getSlots(); } 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 SRuntimePackage.COMPOSITE_SLOT__SLOTS: getSlots().clear(); getSlots().addAll((Collection<? extends ExecutionSlot>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case SRuntimePackage.COMPOSITE_SLOT__SLOTS: getSlots().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case SRuntimePackage.COMPOSITE_SLOT__SLOTS: return slots != null && !slots.isEmpty(); } return super.eIsSet(featureID); } } // CompositeSlotImpl