/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.bpel.fnmeta.model.impl; import org.eclipse.bpel.fnmeta.model.Argument; import org.eclipse.bpel.fnmeta.model.Assistant; import org.eclipse.bpel.fnmeta.model.FMPackage; import org.eclipse.bpel.fnmeta.model.Optionality; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Argument</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.eclipse.bpel.fnmeta.model.impl.ArgumentImpl#getDefaultValue <em>Default Value</em>}</li> * <li>{@link org.eclipse.bpel.fnmeta.model.impl.ArgumentImpl#getName <em>Name</em>}</li> * <li>{@link org.eclipse.bpel.fnmeta.model.impl.ArgumentImpl#getOptionality <em>Optionality</em>}</li> * <li>{@link org.eclipse.bpel.fnmeta.model.impl.ArgumentImpl#getType <em>Type</em>}</li> * <li>{@link org.eclipse.bpel.fnmeta.model.impl.ArgumentImpl#getComment <em>Comment</em>}</li> * <li>{@link org.eclipse.bpel.fnmeta.model.impl.ArgumentImpl#getAssistant <em>Assistant</em>}</li> * </ul> * </p> * * @generated */ public class ArgumentImpl extends FacadeElementImpl implements Argument { /** * The default value of the '{@link #getDefaultValue() <em>Default Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getDefaultValue() * @generated * @ordered */ protected static final String DEFAULT_VALUE_EDEFAULT = ""; /** * The cached value of the '{@link #getDefaultValue() <em>Default Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getDefaultValue() * @generated * @ordered */ protected String defaultValue = DEFAULT_VALUE_EDEFAULT; /** * The default value of the '{@link #getName() <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getName() * @generated * @ordered */ protected static final String NAME_EDEFAULT = null; /** * The cached value of the '{@link #getName() <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getName() * @generated * @ordered */ protected String name = NAME_EDEFAULT; /** * The default value of the '{@link #getOptionality() <em>Optionality</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getOptionality() * @generated * @ordered */ protected static final Optionality OPTIONALITY_EDEFAULT = Optionality.REQUIRED; /** * The cached value of the '{@link #getOptionality() <em>Optionality</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getOptionality() * @generated * @ordered */ protected Optionality optionality = OPTIONALITY_EDEFAULT; /** * This is true if the Optionality attribute has been set. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ protected boolean optionalityESet; /** * The default value of the '{@link #getType() <em>Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getType() * @generated * @ordered */ protected static final String TYPE_EDEFAULT = null; /** * The cached value of the '{@link #getType() <em>Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getType() * @generated * @ordered */ protected String type = TYPE_EDEFAULT; /** * The default value of the '{@link #getComment() <em>Comment</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getComment() * @generated * @ordered */ protected static final String COMMENT_EDEFAULT = null; /** * The cached value of the '{@link #getComment() <em>Comment</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getComment() * @generated * @ordered */ protected String comment = COMMENT_EDEFAULT; /** * The cached value of the '{@link #getAssistant() <em>Assistant</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getAssistant() * @generated * @ordered */ protected Assistant assistant; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ArgumentImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return FMPackage.Literals.ARGUMENT; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getDefaultValue() { return defaultValue; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setDefaultValue(String newDefaultValue) { String oldDefaultValue = defaultValue; defaultValue = newDefaultValue; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, FMPackage.ARGUMENT__DEFAULT_VALUE, oldDefaultValue, defaultValue)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getName() { return name; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setName(String newName) { String oldName = name; name = newName; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, FMPackage.ARGUMENT__NAME, oldName, name)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Optionality getOptionality() { return optionality; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setOptionality(Optionality newOptionality) { Optionality oldOptionality = optionality; optionality = newOptionality == null ? OPTIONALITY_EDEFAULT : newOptionality; boolean oldOptionalityESet = optionalityESet; optionalityESet = true; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, FMPackage.ARGUMENT__OPTIONALITY, oldOptionality, optionality, !oldOptionalityESet)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void unsetOptionality() { Optionality oldOptionality = optionality; boolean oldOptionalityESet = optionalityESet; optionality = OPTIONALITY_EDEFAULT; optionalityESet = false; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.UNSET, FMPackage.ARGUMENT__OPTIONALITY, oldOptionality, OPTIONALITY_EDEFAULT, oldOptionalityESet)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public boolean isSetOptionality() { return optionalityESet; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getType() { return type; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setType(String newType) { String oldType = type; type = newType; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, FMPackage.ARGUMENT__TYPE, oldType, type)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getComment() { return comment; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setComment(String newComment) { String oldComment = comment; comment = newComment; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, FMPackage.ARGUMENT__COMMENT, oldComment, comment)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Assistant getAssistant() { if (assistant != null && assistant.eIsProxy()) { InternalEObject oldAssistant = (InternalEObject)assistant; assistant = (Assistant)eResolveProxy(oldAssistant); if (assistant != oldAssistant) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, FMPackage.ARGUMENT__ASSISTANT, oldAssistant, assistant)); } } return assistant; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Assistant basicGetAssistant() { return assistant; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setAssistant(Assistant newAssistant) { Assistant oldAssistant = assistant; assistant = newAssistant; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, FMPackage.ARGUMENT__ASSISTANT, oldAssistant, assistant)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case FMPackage.ARGUMENT__DEFAULT_VALUE: return getDefaultValue(); case FMPackage.ARGUMENT__NAME: return getName(); case FMPackage.ARGUMENT__OPTIONALITY: return getOptionality(); case FMPackage.ARGUMENT__TYPE: return getType(); case FMPackage.ARGUMENT__COMMENT: return getComment(); case FMPackage.ARGUMENT__ASSISTANT: if (resolve) return getAssistant(); return basicGetAssistant(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case FMPackage.ARGUMENT__DEFAULT_VALUE: setDefaultValue((String)newValue); return; case FMPackage.ARGUMENT__NAME: setName((String)newValue); return; case FMPackage.ARGUMENT__OPTIONALITY: setOptionality((Optionality)newValue); return; case FMPackage.ARGUMENT__TYPE: setType((String)newValue); return; case FMPackage.ARGUMENT__COMMENT: setComment((String)newValue); return; case FMPackage.ARGUMENT__ASSISTANT: setAssistant((Assistant)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case FMPackage.ARGUMENT__DEFAULT_VALUE: setDefaultValue(DEFAULT_VALUE_EDEFAULT); return; case FMPackage.ARGUMENT__NAME: setName(NAME_EDEFAULT); return; case FMPackage.ARGUMENT__OPTIONALITY: unsetOptionality(); return; case FMPackage.ARGUMENT__TYPE: setType(TYPE_EDEFAULT); return; case FMPackage.ARGUMENT__COMMENT: setComment(COMMENT_EDEFAULT); return; case FMPackage.ARGUMENT__ASSISTANT: setAssistant((Assistant)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case FMPackage.ARGUMENT__DEFAULT_VALUE: return DEFAULT_VALUE_EDEFAULT == null ? defaultValue != null : !DEFAULT_VALUE_EDEFAULT.equals(defaultValue); case FMPackage.ARGUMENT__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); case FMPackage.ARGUMENT__OPTIONALITY: return isSetOptionality(); case FMPackage.ARGUMENT__TYPE: return TYPE_EDEFAULT == null ? type != null : !TYPE_EDEFAULT.equals(type); case FMPackage.ARGUMENT__COMMENT: return COMMENT_EDEFAULT == null ? comment != null : !COMMENT_EDEFAULT.equals(comment); case FMPackage.ARGUMENT__ASSISTANT: return assistant != null; } 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(" (defaultValue: "); result.append(defaultValue); result.append(", name: "); result.append(name); result.append(", optionality: "); if (optionalityESet) result.append(optionality); else result.append("<unset>"); result.append(", type: "); result.append(type); result.append(", comment: "); result.append(comment); result.append(')'); return result.toString(); } } //ArgumentImpl