blob: 6e152b0fd94deefa72ab84c9b365967a073208e8 [file] [log] [blame]
/**
* Copyright (c) 2016 Willink Transformations, Univesity of York 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:
* Adolfo Sanchez-Barbudo Herrera - initial API and implementation
*/
package delphi.impl;
import delphi.DelphiPackage;
import delphi.caseLabel;
import delphi.constExpr;
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>case Label</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link delphi.impl.caseLabelImpl#getFirst <em>First</em>}</li>
* <li>{@link delphi.impl.caseLabelImpl#getLast <em>Last</em>}</li>
* </ul>
*
* @generated
*/
public class caseLabelImpl extends CSTraceImpl implements caseLabel {
/**
* The cached value of the '{@link #getFirst() <em>First</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getFirst()
* @generated
* @ordered
*/
protected constExpr first;
/**
* The cached value of the '{@link #getLast() <em>Last</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getLast()
* @generated
* @ordered
*/
protected constExpr last;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected caseLabelImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return DelphiPackage.Literals.CASE_LABEL;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public constExpr getFirst() {
return first;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetFirst(constExpr newFirst, NotificationChain msgs) {
constExpr oldFirst = first;
first = newFirst;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, DelphiPackage.CASE_LABEL__FIRST, oldFirst, newFirst);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setFirst(constExpr newFirst) {
if (newFirst != first) {
NotificationChain msgs = null;
if (first != null)
msgs = ((InternalEObject)first).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - DelphiPackage.CASE_LABEL__FIRST, null, msgs);
if (newFirst != null)
msgs = ((InternalEObject)newFirst).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - DelphiPackage.CASE_LABEL__FIRST, null, msgs);
msgs = basicSetFirst(newFirst, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, DelphiPackage.CASE_LABEL__FIRST, newFirst, newFirst));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public constExpr getLast() {
return last;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetLast(constExpr newLast, NotificationChain msgs) {
constExpr oldLast = last;
last = newLast;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, DelphiPackage.CASE_LABEL__LAST, oldLast, newLast);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setLast(constExpr newLast) {
if (newLast != last) {
NotificationChain msgs = null;
if (last != null)
msgs = ((InternalEObject)last).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - DelphiPackage.CASE_LABEL__LAST, null, msgs);
if (newLast != null)
msgs = ((InternalEObject)newLast).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - DelphiPackage.CASE_LABEL__LAST, null, msgs);
msgs = basicSetLast(newLast, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, DelphiPackage.CASE_LABEL__LAST, newLast, newLast));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case DelphiPackage.CASE_LABEL__FIRST:
return basicSetFirst(null, msgs);
case DelphiPackage.CASE_LABEL__LAST:
return basicSetLast(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 DelphiPackage.CASE_LABEL__FIRST:
return getFirst();
case DelphiPackage.CASE_LABEL__LAST:
return getLast();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case DelphiPackage.CASE_LABEL__FIRST:
setFirst((constExpr)newValue);
return;
case DelphiPackage.CASE_LABEL__LAST:
setLast((constExpr)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case DelphiPackage.CASE_LABEL__FIRST:
setFirst((constExpr)null);
return;
case DelphiPackage.CASE_LABEL__LAST:
setLast((constExpr)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case DelphiPackage.CASE_LABEL__FIRST:
return first != null;
case DelphiPackage.CASE_LABEL__LAST:
return last != null;
}
return super.eIsSet(featureID);
}
} //caseLabelImpl