/** */ package at.bestsolution.efxclipse.tooling.fxgraph.fXGraph.impl; import at.bestsolution.efxclipse.tooling.fxgraph.fXGraph.FXGraphPackage; import at.bestsolution.efxclipse.tooling.fxgraph.fXGraph.Property; import at.bestsolution.efxclipse.tooling.fxgraph.fXGraph.ValueProperty; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.common.notify.NotificationChain; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.emf.ecore.impl.MinimalEObjectImpl; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Property</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link at.bestsolution.efxclipse.tooling.fxgraph.fXGraph.impl.PropertyImpl#getModifier <em>Modifier</em>}</li> * <li>{@link at.bestsolution.efxclipse.tooling.fxgraph.fXGraph.impl.PropertyImpl#getName <em>Name</em>}</li> * <li>{@link at.bestsolution.efxclipse.tooling.fxgraph.fXGraph.impl.PropertyImpl#getValue <em>Value</em>}</li> * </ul> * </p> * * @generated */ public class PropertyImpl extends MinimalEObjectImpl.Container implements Property { /** * The default value of the '{@link #getModifier() <em>Modifier</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getModifier() * @generated * @ordered */ protected static final String MODIFIER_EDEFAULT = null; /** * The cached value of the '{@link #getModifier() <em>Modifier</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getModifier() * @generated * @ordered */ protected String modifier = MODIFIER_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 cached value of the '{@link #getValue() <em>Value</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getValue() * @generated * @ordered */ protected ValueProperty value; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected PropertyImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return FXGraphPackage.Literals.PROPERTY; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getModifier() { return modifier; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setModifier(String newModifier) { String oldModifier = modifier; modifier = newModifier; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, FXGraphPackage.PROPERTY__MODIFIER, oldModifier, modifier)); } /** * <!-- 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, FXGraphPackage.PROPERTY__NAME, oldName, name)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ValueProperty getValue() { return value; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetValue(ValueProperty newValue, NotificationChain msgs) { ValueProperty oldValue = value; value = newValue; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, FXGraphPackage.PROPERTY__VALUE, oldValue, newValue); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setValue(ValueProperty newValue) { if (newValue != value) { NotificationChain msgs = null; if (value != null) msgs = ((InternalEObject)value).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - FXGraphPackage.PROPERTY__VALUE, null, msgs); if (newValue != null) msgs = ((InternalEObject)newValue).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - FXGraphPackage.PROPERTY__VALUE, null, msgs); msgs = basicSetValue(newValue, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, FXGraphPackage.PROPERTY__VALUE, newValue, newValue)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case FXGraphPackage.PROPERTY__VALUE: return basicSetValue(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case FXGraphPackage.PROPERTY__MODIFIER: return getModifier(); case FXGraphPackage.PROPERTY__NAME: return getName(); case FXGraphPackage.PROPERTY__VALUE: return getValue(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case FXGraphPackage.PROPERTY__MODIFIER: setModifier((String)newValue); return; case FXGraphPackage.PROPERTY__NAME: setName((String)newValue); return; case FXGraphPackage.PROPERTY__VALUE: setValue((ValueProperty)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case FXGraphPackage.PROPERTY__MODIFIER: setModifier(MODIFIER_EDEFAULT); return; case FXGraphPackage.PROPERTY__NAME: setName(NAME_EDEFAULT); return; case FXGraphPackage.PROPERTY__VALUE: setValue((ValueProperty)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case FXGraphPackage.PROPERTY__MODIFIER: return MODIFIER_EDEFAULT == null ? modifier != null : !MODIFIER_EDEFAULT.equals(modifier); case FXGraphPackage.PROPERTY__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); case FXGraphPackage.PROPERTY__VALUE: return value != 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(" (modifier: "); result.append(modifier); result.append(", name: "); result.append(name); result.append(')'); return result.toString(); } } //PropertyImpl