/** * <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.pictograms.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.util.EcoreUtil; import org.eclipse.graphiti.mm.pictograms.ContainerShape; import org.eclipse.graphiti.mm.pictograms.PictogramsPackage; import org.eclipse.graphiti.mm.pictograms.Shape; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Shape</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.eclipse.graphiti.mm.pictograms.impl.ShapeImpl#getContainer <em>Container</em>}</li> * </ul> * </p> * * @generated */ public class ShapeImpl extends AnchorContainerImpl implements Shape { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ShapeImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return PictogramsPackage.Literals.SHAPE; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ContainerShape getContainer() { if (eContainerFeatureID() != PictogramsPackage.SHAPE__CONTAINER) return null; return (ContainerShape)eContainer(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ContainerShape basicGetContainer() { if (eContainerFeatureID() != PictogramsPackage.SHAPE__CONTAINER) return null; return (ContainerShape)eInternalContainer(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetContainer(ContainerShape newContainer, NotificationChain msgs) { msgs = eBasicSetContainer((InternalEObject)newContainer, PictogramsPackage.SHAPE__CONTAINER, msgs); return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setContainer(ContainerShape newContainer) { if (newContainer != eInternalContainer() || (eContainerFeatureID() != PictogramsPackage.SHAPE__CONTAINER && newContainer != null)) { if (EcoreUtil.isAncestor(this, newContainer)) throw new IllegalArgumentException("Recursive containment not allowed for " + toString()); NotificationChain msgs = null; if (eInternalContainer() != null) msgs = eBasicRemoveFromContainer(msgs); if (newContainer != null) msgs = ((InternalEObject)newContainer).eInverseAdd(this, PictogramsPackage.CONTAINER_SHAPE__CHILDREN, ContainerShape.class, msgs); msgs = basicSetContainer(newContainer, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, PictogramsPackage.SHAPE__CONTAINER, newContainer, newContainer)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case PictogramsPackage.SHAPE__CONTAINER: if (eInternalContainer() != null) msgs = eBasicRemoveFromContainer(msgs); return basicSetContainer((ContainerShape)otherEnd, msgs); } return super.eInverseAdd(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case PictogramsPackage.SHAPE__CONTAINER: return basicSetContainer(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eBasicRemoveFromContainerFeature(NotificationChain msgs) { switch (eContainerFeatureID()) { case PictogramsPackage.SHAPE__CONTAINER: return eInternalContainer().eInverseRemove(this, PictogramsPackage.CONTAINER_SHAPE__CHILDREN, ContainerShape.class, msgs); } return super.eBasicRemoveFromContainerFeature(msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case PictogramsPackage.SHAPE__CONTAINER: if (resolve) return getContainer(); return basicGetContainer(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case PictogramsPackage.SHAPE__CONTAINER: setContainer((ContainerShape)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case PictogramsPackage.SHAPE__CONTAINER: setContainer((ContainerShape)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case PictogramsPackage.SHAPE__CONTAINER: return basicGetContainer() != null; } return super.eIsSet(featureID); } } //ShapeImpl