/******************************************************************************* * Copyright (c) 2010 Herman Lee. * 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: * Herman Lee - initial API and implementation ******************************************************************************/ package ca.uwaterloo.gsd.fsml.implModel.impl; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; import ca.uwaterloo.gsd.fsml.implModel.ImplModelPackage; import ca.uwaterloo.gsd.fsml.implModel.variant_callsReceived_InMethod; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>variant calls Received In Method</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link ca.uwaterloo.gsd.fsml.implModel.impl.variant_callsReceived_InMethodImpl#getMethodName <em>Method Name</em>}</li> * </ul> * </p> * * @generated */ public class variant_callsReceived_InMethodImpl extends variant_callsReceivedImpl implements variant_callsReceived_InMethod { /** * The default value of the '{@link #getMethodName() <em>Method Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getMethodName() * @generated * @ordered */ protected static final String METHOD_NAME_EDEFAULT = null; /** * The cached value of the '{@link #getMethodName() <em>Method Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getMethodName() * @generated * @ordered */ protected String methodName = METHOD_NAME_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected variant_callsReceived_InMethodImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return ImplModelPackage.Literals.VARIANT_CALLS_RECEIVED_IN_METHOD; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getMethodName() { return methodName; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setMethodName(String newMethodName) { String oldMethodName = methodName; methodName = newMethodName; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ImplModelPackage.VARIANT_CALLS_RECEIVED_IN_METHOD__METHOD_NAME, oldMethodName, methodName)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case ImplModelPackage.VARIANT_CALLS_RECEIVED_IN_METHOD__METHOD_NAME: return getMethodName(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case ImplModelPackage.VARIANT_CALLS_RECEIVED_IN_METHOD__METHOD_NAME: setMethodName((String)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case ImplModelPackage.VARIANT_CALLS_RECEIVED_IN_METHOD__METHOD_NAME: setMethodName(METHOD_NAME_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case ImplModelPackage.VARIANT_CALLS_RECEIVED_IN_METHOD__METHOD_NAME: return METHOD_NAME_EDEFAULT == null ? methodName != null : !METHOD_NAME_EDEFAULT.equals(methodName); } return super.eIsSet(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (methodName: "); result.append(methodName); result.append(')'); return result.toString(); } } //variant_callsReceived_InMethodImpl