|
@@ -0,0 +1,236 @@
|
|
|
+/**
|
|
|
+ */
|
|
|
+package org.yakindu.base.expressions.expressions.impl;
|
|
|
+
|
|
|
+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.EObject;
|
|
|
+import org.eclipse.emf.ecore.InternalEObject;
|
|
|
+
|
|
|
+import org.eclipse.emf.ecore.impl.ENotificationImpl;
|
|
|
+
|
|
|
+import org.yakindu.base.expressions.expressions.Expression;
|
|
|
+import org.yakindu.base.expressions.expressions.ExpressionsPackage;
|
|
|
+import org.yakindu.base.expressions.expressions.TypeCastExpression;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <!-- begin-user-doc -->
|
|
|
+ * An implementation of the model object '<em><b>Type Cast Expression</b></em>'.
|
|
|
+ * <!-- end-user-doc -->
|
|
|
+ * <p>
|
|
|
+ * The following features are implemented:
|
|
|
+ * <ul>
|
|
|
+ * <li>{@link org.yakindu.base.expressions.expressions.impl.TypeCastExpressionImpl#getOperand <em>Operand</em>}</li>
|
|
|
+ * <li>{@link org.yakindu.base.expressions.expressions.impl.TypeCastExpressionImpl#getType <em>Type</em>}</li>
|
|
|
+ * </ul>
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @generated
|
|
|
+ */
|
|
|
+public class TypeCastExpressionImpl extends ExpressionImpl implements TypeCastExpression {
|
|
|
+ /**
|
|
|
+ * The cached value of the '{@link #getOperand() <em>Operand</em>}' containment reference.
|
|
|
+ * <!-- begin-user-doc -->
|
|
|
+ * <!-- end-user-doc -->
|
|
|
+ * @see #getOperand()
|
|
|
+ * @generated
|
|
|
+ * @ordered
|
|
|
+ */
|
|
|
+ protected Expression operand;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * The cached value of the '{@link #getType() <em>Type</em>}' reference.
|
|
|
+ * <!-- begin-user-doc -->
|
|
|
+ * <!-- end-user-doc -->
|
|
|
+ * @see #getType()
|
|
|
+ * @generated
|
|
|
+ * @ordered
|
|
|
+ */
|
|
|
+ protected EObject type;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <!-- begin-user-doc -->
|
|
|
+ * <!-- end-user-doc -->
|
|
|
+ * @generated
|
|
|
+ */
|
|
|
+ protected TypeCastExpressionImpl() {
|
|
|
+ super();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <!-- begin-user-doc -->
|
|
|
+ * <!-- end-user-doc -->
|
|
|
+ * @generated
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ protected EClass eStaticClass() {
|
|
|
+ return ExpressionsPackage.Literals.TYPE_CAST_EXPRESSION;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <!-- begin-user-doc -->
|
|
|
+ * <!-- end-user-doc -->
|
|
|
+ * @generated
|
|
|
+ */
|
|
|
+ public Expression getOperand() {
|
|
|
+ return operand;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <!-- begin-user-doc -->
|
|
|
+ * <!-- end-user-doc -->
|
|
|
+ * @generated
|
|
|
+ */
|
|
|
+ public NotificationChain basicSetOperand(Expression newOperand, NotificationChain msgs) {
|
|
|
+ Expression oldOperand = operand;
|
|
|
+ operand = newOperand;
|
|
|
+ if (eNotificationRequired()) {
|
|
|
+ ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ExpressionsPackage.TYPE_CAST_EXPRESSION__OPERAND, oldOperand, newOperand);
|
|
|
+ if (msgs == null) msgs = notification; else msgs.add(notification);
|
|
|
+ }
|
|
|
+ return msgs;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <!-- begin-user-doc -->
|
|
|
+ * <!-- end-user-doc -->
|
|
|
+ * @generated
|
|
|
+ */
|
|
|
+ public void setOperand(Expression newOperand) {
|
|
|
+ if (newOperand != operand) {
|
|
|
+ NotificationChain msgs = null;
|
|
|
+ if (operand != null)
|
|
|
+ msgs = ((InternalEObject)operand).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - ExpressionsPackage.TYPE_CAST_EXPRESSION__OPERAND, null, msgs);
|
|
|
+ if (newOperand != null)
|
|
|
+ msgs = ((InternalEObject)newOperand).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - ExpressionsPackage.TYPE_CAST_EXPRESSION__OPERAND, null, msgs);
|
|
|
+ msgs = basicSetOperand(newOperand, msgs);
|
|
|
+ if (msgs != null) msgs.dispatch();
|
|
|
+ }
|
|
|
+ else if (eNotificationRequired())
|
|
|
+ eNotify(new ENotificationImpl(this, Notification.SET, ExpressionsPackage.TYPE_CAST_EXPRESSION__OPERAND, newOperand, newOperand));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <!-- begin-user-doc -->
|
|
|
+ * <!-- end-user-doc -->
|
|
|
+ * @generated
|
|
|
+ */
|
|
|
+ public EObject getType() {
|
|
|
+ if (type != null && type.eIsProxy()) {
|
|
|
+ InternalEObject oldType = (InternalEObject)type;
|
|
|
+ type = eResolveProxy(oldType);
|
|
|
+ if (type != oldType) {
|
|
|
+ if (eNotificationRequired())
|
|
|
+ eNotify(new ENotificationImpl(this, Notification.RESOLVE, ExpressionsPackage.TYPE_CAST_EXPRESSION__TYPE, oldType, type));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return type;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <!-- begin-user-doc -->
|
|
|
+ * <!-- end-user-doc -->
|
|
|
+ * @generated
|
|
|
+ */
|
|
|
+ public EObject basicGetType() {
|
|
|
+ return type;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <!-- begin-user-doc -->
|
|
|
+ * <!-- end-user-doc -->
|
|
|
+ * @generated
|
|
|
+ */
|
|
|
+ public void setType(EObject newType) {
|
|
|
+ EObject oldType = type;
|
|
|
+ type = newType;
|
|
|
+ if (eNotificationRequired())
|
|
|
+ eNotify(new ENotificationImpl(this, Notification.SET, ExpressionsPackage.TYPE_CAST_EXPRESSION__TYPE, oldType, type));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <!-- begin-user-doc -->
|
|
|
+ * <!-- end-user-doc -->
|
|
|
+ * @generated
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
|
|
|
+ switch (featureID) {
|
|
|
+ case ExpressionsPackage.TYPE_CAST_EXPRESSION__OPERAND:
|
|
|
+ return basicSetOperand(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 ExpressionsPackage.TYPE_CAST_EXPRESSION__OPERAND:
|
|
|
+ return getOperand();
|
|
|
+ case ExpressionsPackage.TYPE_CAST_EXPRESSION__TYPE:
|
|
|
+ if (resolve) return getType();
|
|
|
+ return basicGetType();
|
|
|
+ }
|
|
|
+ return super.eGet(featureID, resolve, coreType);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <!-- begin-user-doc -->
|
|
|
+ * <!-- end-user-doc -->
|
|
|
+ * @generated
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public void eSet(int featureID, Object newValue) {
|
|
|
+ switch (featureID) {
|
|
|
+ case ExpressionsPackage.TYPE_CAST_EXPRESSION__OPERAND:
|
|
|
+ setOperand((Expression)newValue);
|
|
|
+ return;
|
|
|
+ case ExpressionsPackage.TYPE_CAST_EXPRESSION__TYPE:
|
|
|
+ setType((EObject)newValue);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ super.eSet(featureID, newValue);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <!-- begin-user-doc -->
|
|
|
+ * <!-- end-user-doc -->
|
|
|
+ * @generated
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public void eUnset(int featureID) {
|
|
|
+ switch (featureID) {
|
|
|
+ case ExpressionsPackage.TYPE_CAST_EXPRESSION__OPERAND:
|
|
|
+ setOperand((Expression)null);
|
|
|
+ return;
|
|
|
+ case ExpressionsPackage.TYPE_CAST_EXPRESSION__TYPE:
|
|
|
+ setType((EObject)null);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ super.eUnset(featureID);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <!-- begin-user-doc -->
|
|
|
+ * <!-- end-user-doc -->
|
|
|
+ * @generated
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public boolean eIsSet(int featureID) {
|
|
|
+ switch (featureID) {
|
|
|
+ case ExpressionsPackage.TYPE_CAST_EXPRESSION__OPERAND:
|
|
|
+ return operand != null;
|
|
|
+ case ExpressionsPackage.TYPE_CAST_EXPRESSION__TYPE:
|
|
|
+ return type != null;
|
|
|
+ }
|
|
|
+ return super.eIsSet(featureID);
|
|
|
+ }
|
|
|
+
|
|
|
+} //TypeCastExpressionImpl
|