/* * Copyright 2015 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** */ package bpsim.impl; import bpsim.BpsimPackage; import bpsim.CostParameters; import bpsim.Parameter; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.common.notify.NotificationChain; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.emf.ecore.impl.EObjectImpl; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Cost Parameters</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link bpsim.impl.CostParametersImpl#getFixedCost <em>Fixed Cost</em>}</li> * <li>{@link bpsim.impl.CostParametersImpl#getUnitCost <em>Unit Cost</em>}</li> * </ul> * </p> * * @generated */ public class CostParametersImpl extends EObjectImpl implements CostParameters { /** * The cached value of the '{@link #getFixedCost() <em>Fixed Cost</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getFixedCost() * @generated * @ordered */ protected Parameter fixedCost; /** * The cached value of the '{@link #getUnitCost() <em>Unit Cost</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getUnitCost() * @generated * @ordered */ protected Parameter unitCost; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected CostParametersImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return BpsimPackage.Literals.COST_PARAMETERS; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Parameter getFixedCost() { return fixedCost; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetFixedCost(Parameter newFixedCost, NotificationChain msgs) { Parameter oldFixedCost = fixedCost; fixedCost = newFixedCost; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, BpsimPackage.COST_PARAMETERS__FIXED_COST, oldFixedCost, newFixedCost); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setFixedCost(Parameter newFixedCost) { if (newFixedCost != fixedCost) { NotificationChain msgs = null; if (fixedCost != null) msgs = ((InternalEObject)fixedCost).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - BpsimPackage.COST_PARAMETERS__FIXED_COST, null, msgs); if (newFixedCost != null) msgs = ((InternalEObject)newFixedCost).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - BpsimPackage.COST_PARAMETERS__FIXED_COST, null, msgs); msgs = basicSetFixedCost(newFixedCost, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, BpsimPackage.COST_PARAMETERS__FIXED_COST, newFixedCost, newFixedCost)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Parameter getUnitCost() { return unitCost; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetUnitCost(Parameter newUnitCost, NotificationChain msgs) { Parameter oldUnitCost = unitCost; unitCost = newUnitCost; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, BpsimPackage.COST_PARAMETERS__UNIT_COST, oldUnitCost, newUnitCost); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setUnitCost(Parameter newUnitCost) { if (newUnitCost != unitCost) { NotificationChain msgs = null; if (unitCost != null) msgs = ((InternalEObject)unitCost).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - BpsimPackage.COST_PARAMETERS__UNIT_COST, null, msgs); if (newUnitCost != null) msgs = ((InternalEObject)newUnitCost).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - BpsimPackage.COST_PARAMETERS__UNIT_COST, null, msgs); msgs = basicSetUnitCost(newUnitCost, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, BpsimPackage.COST_PARAMETERS__UNIT_COST, newUnitCost, newUnitCost)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case BpsimPackage.COST_PARAMETERS__FIXED_COST: return basicSetFixedCost(null, msgs); case BpsimPackage.COST_PARAMETERS__UNIT_COST: return basicSetUnitCost(null, 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 BpsimPackage.COST_PARAMETERS__FIXED_COST: return getFixedCost(); case BpsimPackage.COST_PARAMETERS__UNIT_COST: return getUnitCost(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case BpsimPackage.COST_PARAMETERS__FIXED_COST: setFixedCost((Parameter)newValue); return; case BpsimPackage.COST_PARAMETERS__UNIT_COST: setUnitCost((Parameter)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case BpsimPackage.COST_PARAMETERS__FIXED_COST: setFixedCost((Parameter)null); return; case BpsimPackage.COST_PARAMETERS__UNIT_COST: setUnitCost((Parameter)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case BpsimPackage.COST_PARAMETERS__FIXED_COST: return fixedCost != null; case BpsimPackage.COST_PARAMETERS__UNIT_COST: return unitCost != null; } return super.eIsSet(featureID); } } //CostParametersImpl