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

* The following features are implemented: *

*

* * @generated */ public class CommentImpl extends MinimalEObjectImpl.Container implements Comment { /** * The default value of the '{@link #getContent() Content}' attribute. * * * @see #getContent() * @generated * @ordered */ protected static final String CONTENT_EDEFAULT = null; /** * The cached value of the '{@link #getContent() Content}' attribute. * * * @see #getContent() * @generated * @ordered */ protected String content = CONTENT_EDEFAULT; /** * * * @generated */ protected CommentImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return EbnfPackage.Literals.COMMENT; } /** * * * @generated */ public String getContent() { return content; } /** * * * @generated */ public void setContent(String newContent) { String oldContent = content; content = newContent; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, EbnfPackage.COMMENT__CONTENT, oldContent, content)); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case EbnfPackage.COMMENT__CONTENT: return getContent(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case EbnfPackage.COMMENT__CONTENT: setContent((String)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case EbnfPackage.COMMENT__CONTENT: setContent(CONTENT_EDEFAULT); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case EbnfPackage.COMMENT__CONTENT: return CONTENT_EDEFAULT == null ? content != null : !CONTENT_EDEFAULT.equals(content); } return super.eIsSet(featureID); } /** * * * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (content: "); result.append(content); result.append(')'); return result.toString(); } } //CommentImpl