/** * generated by Xtext 2.23.0 */ package xtext.game.impl; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; import xtext.game.ConditionConnaissance; import xtext.game.GamePackage; /** * * An implementation of the model object 'Condition Connaissance'. * *

* The following features are implemented: *

* * * @generated */ public class ConditionConnaissanceImpl extends ConditionTestImpl implements ConditionConnaissance { /** * The default value of the '{@link #getConnaissance() Connaissance}' attribute. * * * @see #getConnaissance() * @generated * @ordered */ protected static final String CONNAISSANCE_EDEFAULT = null; /** * The cached value of the '{@link #getConnaissance() Connaissance}' attribute. * * * @see #getConnaissance() * @generated * @ordered */ protected String connaissance = CONNAISSANCE_EDEFAULT; /** * * * @generated */ protected ConditionConnaissanceImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return GamePackage.Literals.CONDITION_CONNAISSANCE; } /** * * * @generated */ @Override public String getConnaissance() { return connaissance; } /** * * * @generated */ @Override public void setConnaissance(String newConnaissance) { String oldConnaissance = connaissance; connaissance = newConnaissance; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, GamePackage.CONDITION_CONNAISSANCE__CONNAISSANCE, oldConnaissance, connaissance)); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case GamePackage.CONDITION_CONNAISSANCE__CONNAISSANCE: return getConnaissance(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case GamePackage.CONDITION_CONNAISSANCE__CONNAISSANCE: setConnaissance((String)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case GamePackage.CONDITION_CONNAISSANCE__CONNAISSANCE: setConnaissance(CONNAISSANCE_EDEFAULT); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case GamePackage.CONDITION_CONNAISSANCE__CONNAISSANCE: return CONNAISSANCE_EDEFAULT == null ? connaissance != null : !CONNAISSANCE_EDEFAULT.equals(connaissance); } return super.eIsSet(featureID); } /** * * * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuilder result = new StringBuilder(super.toString()); result.append(" (connaissance: "); result.append(connaissance); result.append(')'); return result.toString(); } } //ConditionConnaissanceImpl