/******************************************************************************* * 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_implementsInterface_Indirectly; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>variant implements Interface Indirectly</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link ca.uwaterloo.gsd.fsml.implModel.impl.variant_implementsInterface_IndirectlyImpl#getInterfaceName <em>Interface Name</em>}</li> * </ul> * </p> * * @generated */ public class variant_implementsInterface_IndirectlyImpl extends variant_implementsInterfaceImpl implements variant_implementsInterface_Indirectly { /** * The default value of the '{@link #getInterfaceName() <em>Interface Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getInterfaceName() * @generated * @ordered */ protected static final String INTERFACE_NAME_EDEFAULT = null; /** * The cached value of the '{@link #getInterfaceName() <em>Interface Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getInterfaceName() * @generated * @ordered */ protected String interfaceName = INTERFACE_NAME_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected variant_implementsInterface_IndirectlyImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return ImplModelPackage.Literals.VARIANT_IMPLEMENTS_INTERFACE_INDIRECTLY; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getInterfaceName() { return interfaceName; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setInterfaceName(String newInterfaceName) { String oldInterfaceName = interfaceName; interfaceName = newInterfaceName; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ImplModelPackage.VARIANT_IMPLEMENTS_INTERFACE_INDIRECTLY__INTERFACE_NAME, oldInterfaceName, interfaceName)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case ImplModelPackage.VARIANT_IMPLEMENTS_INTERFACE_INDIRECTLY__INTERFACE_NAME: return getInterfaceName(); } 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_IMPLEMENTS_INTERFACE_INDIRECTLY__INTERFACE_NAME: setInterfaceName((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_IMPLEMENTS_INTERFACE_INDIRECTLY__INTERFACE_NAME: setInterfaceName(INTERFACE_NAME_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case ImplModelPackage.VARIANT_IMPLEMENTS_INTERFACE_INDIRECTLY__INTERFACE_NAME: return INTERFACE_NAME_EDEFAULT == null ? interfaceName != null : !INTERFACE_NAME_EDEFAULT.equals(interfaceName); } 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(" (interfaceName: "); result.append(interfaceName); result.append(')'); return result.toString(); } } //variant_implementsInterface_IndirectlyImpl