/** * <copyright> * * Copyright (c) 2011-2013 Obeo. * 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: * Obeo - initial API and implementation * * </copyright> */ package org.obeonetwork.dsl.bpmn2.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.util.InternalEList; import org.obeonetwork.dsl.bpmn2.Bpmn2Package; import org.obeonetwork.dsl.bpmn2.DataInput; import org.obeonetwork.dsl.bpmn2.InputSet; import org.obeonetwork.dsl.bpmn2.OutputSet; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Input Set</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.obeonetwork.dsl.bpmn2.impl.InputSetImpl#getName <em>Name</em>}</li> * <li>{@link org.obeonetwork.dsl.bpmn2.impl.InputSetImpl#getDataInputRefs <em>Data Input Refs</em>}</li> * <li>{@link org.obeonetwork.dsl.bpmn2.impl.InputSetImpl#getOptionalInputRefs <em>Optional Input Refs</em>}</li> * <li>{@link org.obeonetwork.dsl.bpmn2.impl.InputSetImpl#getWhileExecutingInputRefs <em>While Executing Input Refs</em>}</li> * <li>{@link org.obeonetwork.dsl.bpmn2.impl.InputSetImpl#getOutputSetRefs <em>Output Set Refs</em>}</li> * </ul> * * @generated */ public class InputSetImpl extends BaseElementImpl implements InputSet { /** * The default value of the '{@link #getName() <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getName() * @generated * @ordered */ protected static final String NAME_EDEFAULT = null; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected InputSetImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return Bpmn2Package.Literals.INPUT_SET; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getName() { return (String) eDynamicGet(Bpmn2Package.INPUT_SET__NAME, Bpmn2Package.Literals.INPUT_SET__NAME, true, true); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setName(String newName) { eDynamicSet(Bpmn2Package.INPUT_SET__NAME, Bpmn2Package.Literals.INPUT_SET__NAME, newName); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") public EList<DataInput> getDataInputRefs() { return (EList<DataInput>) eDynamicGet(Bpmn2Package.INPUT_SET__DATA_INPUT_REFS, Bpmn2Package.Literals.INPUT_SET__DATA_INPUT_REFS, true, true); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") public EList<DataInput> getOptionalInputRefs() { return (EList<DataInput>) eDynamicGet(Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS, Bpmn2Package.Literals.INPUT_SET__OPTIONAL_INPUT_REFS, true, true); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") public EList<DataInput> getWhileExecutingInputRefs() { return (EList<DataInput>) eDynamicGet(Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS, Bpmn2Package.Literals.INPUT_SET__WHILE_EXECUTING_INPUT_REFS, true, true); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") public EList<OutputSet> getOutputSetRefs() { return (EList<OutputSet>) eDynamicGet(Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS, Bpmn2Package.Literals.INPUT_SET__OUTPUT_SET_REFS, true, true); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") @Override public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case Bpmn2Package.INPUT_SET__DATA_INPUT_REFS: return ((InternalEList<InternalEObject>) (InternalEList<?>) getDataInputRefs()).basicAdd(otherEnd, msgs); case Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS: return ((InternalEList<InternalEObject>) (InternalEList<?>) getOptionalInputRefs()).basicAdd(otherEnd, msgs); case Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS: return ((InternalEList<InternalEObject>) (InternalEList<?>) getWhileExecutingInputRefs()).basicAdd(otherEnd, msgs); case Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS: return ((InternalEList<InternalEObject>) (InternalEList<?>) getOutputSetRefs()).basicAdd(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 Bpmn2Package.INPUT_SET__DATA_INPUT_REFS: return ((InternalEList<?>) getDataInputRefs()).basicRemove(otherEnd, msgs); case Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS: return ((InternalEList<?>) getOptionalInputRefs()).basicRemove(otherEnd, msgs); case Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS: return ((InternalEList<?>) getWhileExecutingInputRefs()).basicRemove(otherEnd, msgs); case Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS: return ((InternalEList<?>) getOutputSetRefs()).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 Bpmn2Package.INPUT_SET__NAME: return getName(); case Bpmn2Package.INPUT_SET__DATA_INPUT_REFS: return getDataInputRefs(); case Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS: return getOptionalInputRefs(); case Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS: return getWhileExecutingInputRefs(); case Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS: return getOutputSetRefs(); } 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 Bpmn2Package.INPUT_SET__NAME: setName((String) newValue); return; case Bpmn2Package.INPUT_SET__DATA_INPUT_REFS: getDataInputRefs().clear(); getDataInputRefs().addAll((Collection<? extends DataInput>) newValue); return; case Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS: getOptionalInputRefs().clear(); getOptionalInputRefs().addAll((Collection<? extends DataInput>) newValue); return; case Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS: getWhileExecutingInputRefs().clear(); getWhileExecutingInputRefs().addAll((Collection<? extends DataInput>) newValue); return; case Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS: getOutputSetRefs().clear(); getOutputSetRefs().addAll((Collection<? extends OutputSet>) newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case Bpmn2Package.INPUT_SET__NAME: setName(NAME_EDEFAULT); return; case Bpmn2Package.INPUT_SET__DATA_INPUT_REFS: getDataInputRefs().clear(); return; case Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS: getOptionalInputRefs().clear(); return; case Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS: getWhileExecutingInputRefs().clear(); return; case Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS: getOutputSetRefs().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case Bpmn2Package.INPUT_SET__NAME: return NAME_EDEFAULT == null ? getName() != null : !NAME_EDEFAULT.equals(getName()); case Bpmn2Package.INPUT_SET__DATA_INPUT_REFS: return !getDataInputRefs().isEmpty(); case Bpmn2Package.INPUT_SET__OPTIONAL_INPUT_REFS: return !getOptionalInputRefs().isEmpty(); case Bpmn2Package.INPUT_SET__WHILE_EXECUTING_INPUT_REFS: return !getWhileExecutingInputRefs().isEmpty(); case Bpmn2Package.INPUT_SET__OUTPUT_SET_REFS: return !getOutputSetRefs().isEmpty(); } return super.eIsSet(featureID); } } //InputSetImpl