/** * Copyright (c) 2012-2016 Marsha Chechik, Alessio Di Sandro, Michalis Famelis, * Rick Salay. * 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: * Alessio Di Sandro - Implementation. */ package edu.toronto.cs.se.modelepedia.statemachine.impl; import edu.toronto.cs.se.modelepedia.statemachine.State; import edu.toronto.cs.se.modelepedia.statemachine.StateAction; import edu.toronto.cs.se.modelepedia.statemachine.StateMachinePackage; 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; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>State</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link edu.toronto.cs.se.modelepedia.statemachine.impl.StateImpl#getInternalActions <em>Internal Actions</em>}</li> * </ul> * * @generated */ public class StateImpl extends AbstractStateImpl implements State { /** * The cached value of the '{@link #getInternalActions() <em>Internal Actions</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getInternalActions() * @generated * @ordered */ protected EList<StateAction> internalActions; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected StateImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return StateMachinePackage.Literals.STATE; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<StateAction> getInternalActions() { if (internalActions == null) { internalActions = new EObjectContainmentEList<StateAction>(StateAction.class, this, StateMachinePackage.STATE__INTERNAL_ACTIONS); } return internalActions; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case StateMachinePackage.STATE__INTERNAL_ACTIONS: return ((InternalEList<?>)getInternalActions()).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 StateMachinePackage.STATE__INTERNAL_ACTIONS: return getInternalActions(); } 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 StateMachinePackage.STATE__INTERNAL_ACTIONS: getInternalActions().clear(); getInternalActions().addAll((Collection<? extends StateAction>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case StateMachinePackage.STATE__INTERNAL_ACTIONS: getInternalActions().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case StateMachinePackage.STATE__INTERNAL_ACTIONS: return internalActions != null && !internalActions.isEmpty(); } return super.eIsSet(featureID); } } //StateImpl