/** * <copyright> * </copyright> * * $Id$ */ package no.hal.scxml.scxmlxt.impl; import no.hal.scxml.scxmlxt.ScriptAction; import no.hal.scxml.scxmlxt.ScxmlxtPackage; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Script Action</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link no.hal.scxml.scxmlxt.impl.ScriptActionImpl#getScript <em>Script</em>}</li> * </ul> * </p> * * @generated */ public class ScriptActionImpl extends ActionImpl implements ScriptAction { /** * The default value of the '{@link #getScript() <em>Script</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getScript() * @generated * @ordered */ protected static final String SCRIPT_EDEFAULT = null; /** * The cached value of the '{@link #getScript() <em>Script</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getScript() * @generated * @ordered */ protected String script = SCRIPT_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ScriptActionImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return ScxmlxtPackage.Literals.SCRIPT_ACTION; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getScript() { return script; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setScript(String newScript) { String oldScript = script; script = newScript; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ScxmlxtPackage.SCRIPT_ACTION__SCRIPT, oldScript, script)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case ScxmlxtPackage.SCRIPT_ACTION__SCRIPT: return getScript(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case ScxmlxtPackage.SCRIPT_ACTION__SCRIPT: setScript((String)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case ScxmlxtPackage.SCRIPT_ACTION__SCRIPT: setScript(SCRIPT_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case ScxmlxtPackage.SCRIPT_ACTION__SCRIPT: return SCRIPT_EDEFAULT == null ? script != null : !SCRIPT_EDEFAULT.equals(script); } return super.eIsSet(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (script: "); result.append(script); result.append(')'); return result.toString(); } } //ScriptActionImpl