/****************************************************************************** * Copyright (c) 2009-2013, Linagora * * 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: * Linagora - initial API and implementation *******************************************************************************/ package com.sun.java.xml.ns.jbi.impl; import com.sun.java.xml.ns.jbi.Identification; import com.sun.java.xml.ns.jbi.JbiPackage; import com.sun.java.xml.ns.jbi.ServiceUnit; import com.sun.java.xml.ns.jbi.Target; 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; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Service Unit</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link com.sun.java.xml.ns.jbi.impl.ServiceUnitImpl#getIdentification <em>Identification</em>}</li> * <li>{@link com.sun.java.xml.ns.jbi.impl.ServiceUnitImpl#getTarget <em>Target</em>}</li> * </ul> * </p> * * @generated */ public class ServiceUnitImpl extends AbstractExtensibleElementImpl implements ServiceUnit { /** * The cached value of the '{@link #getIdentification() <em>Identification</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getIdentification() * @generated * @ordered */ protected Identification identification; /** * The cached value of the '{@link #getTarget() <em>Target</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getTarget() * @generated * @ordered */ protected Target target; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ServiceUnitImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return JbiPackage.Literals.SERVICE_UNIT; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Identification getIdentification() { return identification; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetIdentification(Identification newIdentification, NotificationChain msgs) { Identification oldIdentification = identification; identification = newIdentification; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, JbiPackage.SERVICE_UNIT__IDENTIFICATION, oldIdentification, newIdentification); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setIdentification(Identification newIdentification) { if (newIdentification != identification) { NotificationChain msgs = null; if (identification != null) msgs = ((InternalEObject)identification).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - JbiPackage.SERVICE_UNIT__IDENTIFICATION, null, msgs); if (newIdentification != null) msgs = ((InternalEObject)newIdentification).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - JbiPackage.SERVICE_UNIT__IDENTIFICATION, null, msgs); msgs = basicSetIdentification(newIdentification, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, JbiPackage.SERVICE_UNIT__IDENTIFICATION, newIdentification, newIdentification)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Target getTarget() { return target; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetTarget(Target newTarget, NotificationChain msgs) { Target oldTarget = target; target = newTarget; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, JbiPackage.SERVICE_UNIT__TARGET, oldTarget, newTarget); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setTarget(Target newTarget) { if (newTarget != target) { NotificationChain msgs = null; if (target != null) msgs = ((InternalEObject)target).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - JbiPackage.SERVICE_UNIT__TARGET, null, msgs); if (newTarget != null) msgs = ((InternalEObject)newTarget).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - JbiPackage.SERVICE_UNIT__TARGET, null, msgs); msgs = basicSetTarget(newTarget, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, JbiPackage.SERVICE_UNIT__TARGET, newTarget, newTarget)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case JbiPackage.SERVICE_UNIT__IDENTIFICATION: return basicSetIdentification(null, msgs); case JbiPackage.SERVICE_UNIT__TARGET: return basicSetTarget(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 JbiPackage.SERVICE_UNIT__IDENTIFICATION: return getIdentification(); case JbiPackage.SERVICE_UNIT__TARGET: return getTarget(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case JbiPackage.SERVICE_UNIT__IDENTIFICATION: setIdentification((Identification)newValue); return; case JbiPackage.SERVICE_UNIT__TARGET: setTarget((Target)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case JbiPackage.SERVICE_UNIT__IDENTIFICATION: setIdentification((Identification)null); return; case JbiPackage.SERVICE_UNIT__TARGET: setTarget((Target)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case JbiPackage.SERVICE_UNIT__IDENTIFICATION: return identification != null; case JbiPackage.SERVICE_UNIT__TARGET: return target != null; } return super.eIsSet(featureID); } } //ServiceUnitImpl