/** * generated by Xtext 2.14.0 */ package com.minres.rdl.rdl.impl; import com.minres.rdl.rdl.Include; import com.minres.rdl.rdl.RdlPackage; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.emf.ecore.impl.MinimalEObjectImpl; /** * * An implementation of the model object 'Include'. * *

* The following features are implemented: *

* * * @generated */ public class IncludeImpl extends MinimalEObjectImpl.Container implements Include { /** * The default value of the '{@link #getImportURI() Import URI}' attribute. * * * @see #getImportURI() * @generated * @ordered */ protected static final String IMPORT_URI_EDEFAULT = null; /** * The cached value of the '{@link #getImportURI() Import URI}' attribute. * * * @see #getImportURI() * @generated * @ordered */ protected String importURI = IMPORT_URI_EDEFAULT; /** * * * @generated */ protected IncludeImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return RdlPackage.Literals.INCLUDE; } /** * * * @generated */ public String getImportURI() { return importURI; } /** * * * @generated */ public void setImportURI(String newImportURI) { String oldImportURI = importURI; importURI = newImportURI; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, RdlPackage.INCLUDE__IMPORT_URI, oldImportURI, importURI)); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case RdlPackage.INCLUDE__IMPORT_URI: return getImportURI(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case RdlPackage.INCLUDE__IMPORT_URI: setImportURI((String)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case RdlPackage.INCLUDE__IMPORT_URI: setImportURI(IMPORT_URI_EDEFAULT); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case RdlPackage.INCLUDE__IMPORT_URI: return IMPORT_URI_EDEFAULT == null ? importURI != null : !IMPORT_URI_EDEFAULT.equals(importURI); } return super.eIsSet(featureID); } /** * * * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (importURI: "); result.append(importURI); result.append(')'); return result.toString(); } } //IncludeImpl