/** * 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.mavo.impl; import edu.toronto.cs.se.mavo.MAVOCollection; import edu.toronto.cs.se.mavo.MAVOPackage; import edu.toronto.cs.se.mavo.VarDecision; 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; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Var Decision</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link edu.toronto.cs.se.mavo.impl.VarDecisionImpl#getDomain <em>Domain</em>}</li> * </ul> * * @generated */ public class VarDecisionImpl extends MAVODecisionImpl implements VarDecision { /** * The cached value of the '{@link #getDomain() <em>Domain</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getDomain() * @generated * @ordered */ protected MAVOCollection domain; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected VarDecisionImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return MAVOPackage.Literals.VAR_DECISION; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public MAVOCollection getDomain() { return domain; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetDomain(MAVOCollection newDomain, NotificationChain msgs) { MAVOCollection oldDomain = domain; domain = newDomain; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, MAVOPackage.VAR_DECISION__DOMAIN, oldDomain, newDomain); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setDomain(MAVOCollection newDomain) { if (newDomain != domain) { NotificationChain msgs = null; if (domain != null) msgs = ((InternalEObject)domain).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - MAVOPackage.VAR_DECISION__DOMAIN, null, msgs); if (newDomain != null) msgs = ((InternalEObject)newDomain).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - MAVOPackage.VAR_DECISION__DOMAIN, null, msgs); msgs = basicSetDomain(newDomain, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, MAVOPackage.VAR_DECISION__DOMAIN, newDomain, newDomain)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case MAVOPackage.VAR_DECISION__DOMAIN: return basicSetDomain(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 MAVOPackage.VAR_DECISION__DOMAIN: return getDomain(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case MAVOPackage.VAR_DECISION__DOMAIN: setDomain((MAVOCollection)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case MAVOPackage.VAR_DECISION__DOMAIN: setDomain((MAVOCollection)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case MAVOPackage.VAR_DECISION__DOMAIN: return domain != null; } return super.eIsSet(featureID); } } //VarDecisionImpl