blob: 33dd93ebfdeb08918a351dd8f6ed5ee185ee98d6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Willink Transformations and others.
* 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:
* E.D.Willink - initial API and implementation
*******************************************************************************/
/**
*/
package example1.target.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.jdt.annotation.NonNull;
import org.eclipse.jdt.annotation.Nullable;
import example1.target.A1;
import example1.target.B;
import example1.target.D;
import example1.target.TargetPackage;
import example1.target.util.Visitor;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>B</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link example1.target.impl.BImpl#getToA1 <em>To A1</em>}</li>
* <li>{@link example1.target.impl.BImpl#getOwnsD <em>Owns D</em>}</li>
* </ul>
*
* @generated
*/
public class BImpl extends NamespaceImpl implements B {
/**
* The cached value of the '{@link #getOwnsD() <em>Owns D</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getOwnsD()
* @generated
* @ordered
*/
protected D ownsD;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected BImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return TargetPackage.Literals.B;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public A1 getToA1() {
if (eContainerFeatureID() != TargetPackage.B__TO_A1) return null;
return (A1)eInternalContainer();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetToA1(A1 newToA1, NotificationChain msgs) {
msgs = eBasicSetContainer((InternalEObject)newToA1, TargetPackage.B__TO_A1, msgs);
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setToA1(A1 newToA1) {
if (newToA1 != eInternalContainer() || (eContainerFeatureID() != TargetPackage.B__TO_A1 && newToA1 != null)) {
if (EcoreUtil.isAncestor(this, newToA1))
throw new IllegalArgumentException("Recursive containment not allowed for " + toString());
NotificationChain msgs = null;
if (eInternalContainer() != null)
msgs = eBasicRemoveFromContainer(msgs);
if (newToA1 != null)
msgs = ((InternalEObject)newToA1).eInverseAdd(this, TargetPackage.A1__OWNS_B, A1.class, msgs);
msgs = basicSetToA1(newToA1, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, TargetPackage.B__TO_A1, newToA1, newToA1));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public D getOwnsD() {
return ownsD;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetOwnsD(D newOwnsD, NotificationChain msgs) {
D oldOwnsD = ownsD;
ownsD = newOwnsD;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, TargetPackage.B__OWNS_D, oldOwnsD, newOwnsD);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setOwnsD(D newOwnsD) {
if (newOwnsD != ownsD) {
NotificationChain msgs = null;
if (ownsD != null)
msgs = ((InternalEObject)ownsD).eInverseRemove(this, TargetPackage.D__TO_B, D.class, msgs);
if (newOwnsD != null)
msgs = ((InternalEObject)newOwnsD).eInverseAdd(this, TargetPackage.D__TO_B, D.class, msgs);
msgs = basicSetOwnsD(newOwnsD, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, TargetPackage.B__OWNS_D, newOwnsD, newOwnsD));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case TargetPackage.B__TO_A1:
if (eInternalContainer() != null)
msgs = eBasicRemoveFromContainer(msgs);
return basicSetToA1((A1)otherEnd, msgs);
case TargetPackage.B__OWNS_D:
if (ownsD != null)
msgs = ((InternalEObject)ownsD).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - TargetPackage.B__OWNS_D, null, msgs);
return basicSetOwnsD((D)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 TargetPackage.B__TO_A1:
return basicSetToA1(null, msgs);
case TargetPackage.B__OWNS_D:
return basicSetOwnsD(null, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eBasicRemoveFromContainerFeature(NotificationChain msgs) {
switch (eContainerFeatureID()) {
case TargetPackage.B__TO_A1:
return eInternalContainer().eInverseRemove(this, TargetPackage.A1__OWNS_B, A1.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 TargetPackage.B__TO_A1:
return getToA1();
case TargetPackage.B__OWNS_D:
return getOwnsD();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case TargetPackage.B__TO_A1:
setToA1((A1)newValue);
return;
case TargetPackage.B__OWNS_D:
setOwnsD((D)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case TargetPackage.B__TO_A1:
setToA1((A1)null);
return;
case TargetPackage.B__OWNS_D:
setOwnsD((D)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case TargetPackage.B__TO_A1:
return getToA1() != null;
case TargetPackage.B__OWNS_D:
return ownsD != null;
}
return super.eIsSet(featureID);
}
/**
* {@inheritDoc}
* @generated
*/
@Override
public @Nullable <R> R accept(@NonNull Visitor<R> visitor) {
return visitor.visitB(this);
}
} //BImpl