All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.contextmapper.dsl.contextMappingDSL.impl.ImportImpl Maven / Gradle / Ivy

/**
 * generated by Xtext 2.20.0
 */
package org.contextmapper.dsl.contextMappingDSL.impl;

import org.contextmapper.dsl.contextMappingDSL.ContextMappingDSLPackage;
import org.contextmapper.dsl.contextMappingDSL.Import;

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 'Import'.
 * 
 * 

* The following features are implemented: *

*
    *
  • {@link org.contextmapper.dsl.contextMappingDSL.impl.ImportImpl#getImportURI Import URI}
  • *
* * @generated */ public class ImportImpl extends MinimalEObjectImpl.Container implements Import { /** * 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 ImportImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return ContextMappingDSLPackage.Literals.IMPORT; } /** * * * @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, ContextMappingDSLPackage.IMPORT__IMPORT_URI, oldImportURI, importURI)); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case ContextMappingDSLPackage.IMPORT__IMPORT_URI: return getImportURI(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case ContextMappingDSLPackage.IMPORT__IMPORT_URI: setImportURI((String)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case ContextMappingDSLPackage.IMPORT__IMPORT_URI: setImportURI(IMPORT_URI_EDEFAULT); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case ContextMappingDSLPackage.IMPORT__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(); } } //ImportImpl




© 2015 - 2024 Weber Informatics LLC | Privacy Policy