/******************************************************************************* * Copyright (c) 2014 Willink Transformations 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: * E.D.Willink - initial API and implementation *******************************************************************************/ package org.eclipse.ocl.examples.xtext2lpg.XBNF.impl; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EClassifier; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.ocl.examples.xtext2lpg.XBNF.ActionAssignment; import org.eclipse.ocl.examples.xtext2lpg.XBNF.XBNFPackage; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Action Assignment</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.eclipse.ocl.examples.xtext2lpg.XBNF.impl.ActionAssignmentImpl#getType <em>Type</em>}</li> * </ul> * </p> * * @generated */ public class ActionAssignmentImpl extends AssignmentImpl implements ActionAssignment { /** * The cached value of the '{@link #getType() <em>Type</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getType() * @generated * @ordered */ protected EClassifier type; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ActionAssignmentImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return XBNFPackage.Literals.ACTION_ASSIGNMENT; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EClassifier getType() { if (type != null && type.eIsProxy()) { InternalEObject oldType = (InternalEObject)type; type = (EClassifier)eResolveProxy(oldType); if (type != oldType) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, XBNFPackage.ACTION_ASSIGNMENT__TYPE, oldType, type)); } } return type; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EClassifier basicGetType() { return type; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setType(EClassifier newType) { EClassifier oldType = type; type = newType; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, XBNFPackage.ACTION_ASSIGNMENT__TYPE, oldType, type)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case XBNFPackage.ACTION_ASSIGNMENT__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 XBNFPackage.ACTION_ASSIGNMENT__TYPE: setType((EClassifier)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case XBNFPackage.ACTION_ASSIGNMENT__TYPE: setType((EClassifier)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case XBNFPackage.ACTION_ASSIGNMENT__TYPE: return type != null; } return super.eIsSet(featureID); } } //ActionAssignmentImpl