/** * <copyright> * * Copyright (c) 2005, 2010 SAP AG. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * SAP AG - initial API, implementation and documentation * * </copyright> */ package org.eclipse.graphiti.mm.algorithms.styles.impl; 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.EObjectImpl; import org.eclipse.graphiti.mm.algorithms.styles.GradientColoredArea; import org.eclipse.graphiti.mm.algorithms.styles.GradientColoredLocation; import org.eclipse.graphiti.mm.algorithms.styles.StylesPackage; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Gradient Colored Area</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.eclipse.graphiti.mm.algorithms.styles.impl.GradientColoredAreaImpl#getStart <em>Start</em>}</li> * <li>{@link org.eclipse.graphiti.mm.algorithms.styles.impl.GradientColoredAreaImpl#getEnd <em>End</em>}</li> * </ul> * </p> * * @generated */ public class GradientColoredAreaImpl extends EObjectImpl implements GradientColoredArea { /** * The cached value of the '{@link #getStart() <em>Start</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getStart() * @generated * @ordered */ protected GradientColoredLocation start; /** * The cached value of the '{@link #getEnd() <em>End</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getEnd() * @generated * @ordered */ protected GradientColoredLocation end; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected GradientColoredAreaImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return StylesPackage.Literals.GRADIENT_COLORED_AREA; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public GradientColoredLocation getStart() { if (start != null && start.eIsProxy()) { InternalEObject oldStart = (InternalEObject)start; start = (GradientColoredLocation)eResolveProxy(oldStart); if (start != oldStart) { InternalEObject newStart = (InternalEObject)start; NotificationChain msgs = oldStart.eInverseRemove(this, EOPPOSITE_FEATURE_BASE - StylesPackage.GRADIENT_COLORED_AREA__START, null, null); if (newStart.eInternalContainer() == null) { msgs = newStart.eInverseAdd(this, EOPPOSITE_FEATURE_BASE - StylesPackage.GRADIENT_COLORED_AREA__START, null, msgs); } if (msgs != null) msgs.dispatch(); if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, StylesPackage.GRADIENT_COLORED_AREA__START, oldStart, start)); } } return start; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public GradientColoredLocation basicGetStart() { return start; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetStart(GradientColoredLocation newStart, NotificationChain msgs) { GradientColoredLocation oldStart = start; start = newStart; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, StylesPackage.GRADIENT_COLORED_AREA__START, oldStart, newStart); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setStart(GradientColoredLocation newStart) { if (newStart != start) { NotificationChain msgs = null; if (start != null) msgs = ((InternalEObject)start).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - StylesPackage.GRADIENT_COLORED_AREA__START, null, msgs); if (newStart != null) msgs = ((InternalEObject)newStart).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - StylesPackage.GRADIENT_COLORED_AREA__START, null, msgs); msgs = basicSetStart(newStart, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, StylesPackage.GRADIENT_COLORED_AREA__START, newStart, newStart)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public GradientColoredLocation getEnd() { if (end != null && end.eIsProxy()) { InternalEObject oldEnd = (InternalEObject)end; end = (GradientColoredLocation)eResolveProxy(oldEnd); if (end != oldEnd) { InternalEObject newEnd = (InternalEObject)end; NotificationChain msgs = oldEnd.eInverseRemove(this, EOPPOSITE_FEATURE_BASE - StylesPackage.GRADIENT_COLORED_AREA__END, null, null); if (newEnd.eInternalContainer() == null) { msgs = newEnd.eInverseAdd(this, EOPPOSITE_FEATURE_BASE - StylesPackage.GRADIENT_COLORED_AREA__END, null, msgs); } if (msgs != null) msgs.dispatch(); if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, StylesPackage.GRADIENT_COLORED_AREA__END, oldEnd, end)); } } return end; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public GradientColoredLocation basicGetEnd() { return end; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetEnd(GradientColoredLocation newEnd, NotificationChain msgs) { GradientColoredLocation oldEnd = end; end = newEnd; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, StylesPackage.GRADIENT_COLORED_AREA__END, oldEnd, newEnd); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setEnd(GradientColoredLocation newEnd) { if (newEnd != end) { NotificationChain msgs = null; if (end != null) msgs = ((InternalEObject)end).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - StylesPackage.GRADIENT_COLORED_AREA__END, null, msgs); if (newEnd != null) msgs = ((InternalEObject)newEnd).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - StylesPackage.GRADIENT_COLORED_AREA__END, null, msgs); msgs = basicSetEnd(newEnd, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, StylesPackage.GRADIENT_COLORED_AREA__END, newEnd, newEnd)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case StylesPackage.GRADIENT_COLORED_AREA__START: return basicSetStart(null, msgs); case StylesPackage.GRADIENT_COLORED_AREA__END: return basicSetEnd(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 StylesPackage.GRADIENT_COLORED_AREA__START: if (resolve) return getStart(); return basicGetStart(); case StylesPackage.GRADIENT_COLORED_AREA__END: if (resolve) return getEnd(); return basicGetEnd(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case StylesPackage.GRADIENT_COLORED_AREA__START: setStart((GradientColoredLocation)newValue); return; case StylesPackage.GRADIENT_COLORED_AREA__END: setEnd((GradientColoredLocation)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case StylesPackage.GRADIENT_COLORED_AREA__START: setStart((GradientColoredLocation)null); return; case StylesPackage.GRADIENT_COLORED_AREA__END: setEnd((GradientColoredLocation)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case StylesPackage.GRADIENT_COLORED_AREA__START: return start != null; case StylesPackage.GRADIENT_COLORED_AREA__END: return end != null; } return super.eIsSet(featureID); } } //GradientColoredAreaImpl