/** */ package de.ugoe.cs.swe.bnftools.ebnf.impl; import de.ugoe.cs.swe.bnftools.ebnf.EbnfPackage; import de.ugoe.cs.swe.bnftools.ebnf.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: *

*

* * @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; /** * The default value of the '{@link #getGrammarType() Grammar Type}' attribute. * * * @see #getGrammarType() * @generated * @ordered */ protected static final String GRAMMAR_TYPE_EDEFAULT = null; /** * The cached value of the '{@link #getGrammarType() Grammar Type}' attribute. * * * @see #getGrammarType() * @generated * @ordered */ protected String grammarType = GRAMMAR_TYPE_EDEFAULT; /** * The default value of the '{@link #getLabel() Label}' attribute. * * * @see #getLabel() * @generated * @ordered */ protected static final String LABEL_EDEFAULT = null; /** * The cached value of the '{@link #getLabel() Label}' attribute. * * * @see #getLabel() * @generated * @ordered */ protected String label = LABEL_EDEFAULT; /** * * * @generated */ protected ImportImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return EbnfPackage.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, EbnfPackage.IMPORT__IMPORT_URI, oldImportURI, importURI)); } /** * * * @generated */ public String getGrammarType() { return grammarType; } /** * * * @generated */ public void setGrammarType(String newGrammarType) { String oldGrammarType = grammarType; grammarType = newGrammarType; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, EbnfPackage.IMPORT__GRAMMAR_TYPE, oldGrammarType, grammarType)); } /** * * * @generated */ public String getLabel() { return label; } /** * * * @generated */ public void setLabel(String newLabel) { String oldLabel = label; label = newLabel; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, EbnfPackage.IMPORT__LABEL, oldLabel, label)); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case EbnfPackage.IMPORT__IMPORT_URI: return getImportURI(); case EbnfPackage.IMPORT__GRAMMAR_TYPE: return getGrammarType(); case EbnfPackage.IMPORT__LABEL: return getLabel(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case EbnfPackage.IMPORT__IMPORT_URI: setImportURI((String)newValue); return; case EbnfPackage.IMPORT__GRAMMAR_TYPE: setGrammarType((String)newValue); return; case EbnfPackage.IMPORT__LABEL: setLabel((String)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case EbnfPackage.IMPORT__IMPORT_URI: setImportURI(IMPORT_URI_EDEFAULT); return; case EbnfPackage.IMPORT__GRAMMAR_TYPE: setGrammarType(GRAMMAR_TYPE_EDEFAULT); return; case EbnfPackage.IMPORT__LABEL: setLabel(LABEL_EDEFAULT); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case EbnfPackage.IMPORT__IMPORT_URI: return IMPORT_URI_EDEFAULT == null ? importURI != null : !IMPORT_URI_EDEFAULT.equals(importURI); case EbnfPackage.IMPORT__GRAMMAR_TYPE: return GRAMMAR_TYPE_EDEFAULT == null ? grammarType != null : !GRAMMAR_TYPE_EDEFAULT.equals(grammarType); case EbnfPackage.IMPORT__LABEL: return LABEL_EDEFAULT == null ? label != null : !LABEL_EDEFAULT.equals(label); } 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(", grammarType: "); result.append(grammarType); result.append(", label: "); result.append(label); result.append(')'); return result.toString(); } } //ImportImpl