/*- * ============LICENSE_START========================================== * OPENECOMP - DCAE * =================================================================== * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. * =================================================================== * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ============LICENSE_END============================================ */ /** */ package org.openecomp.ncomp.gwt.siriusportal.model.impl; import org.openecomp.ncomp.gwt.siriusportal.model.GuiObject; import org.openecomp.ncomp.gwt.siriusportal.model.GuiObjectValueObject; import org.openecomp.ncomp.gwt.siriusportal.model.ModelPackage; 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; /** * * An implementation of the model object 'Gui Object Value Object'. * *

* The following features are implemented: *

* * * @generated */ public class GuiObjectValueObjectImpl extends GuiObjectValueImpl implements GuiObjectValueObject { /** * The cached value of the '{@link #getV() V}' containment reference. * * * @see #getV() * @generated * @ordered */ protected GuiObject v; /** * * * @generated */ protected GuiObjectValueObjectImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return ModelPackage.Literals.GUI_OBJECT_VALUE_OBJECT; } /** * * * @generated */ public GuiObject getV() { return v; } /** * * * @generated */ public NotificationChain basicSetV(GuiObject newV, NotificationChain msgs) { GuiObject oldV = v; v = newV; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ModelPackage.GUI_OBJECT_VALUE_OBJECT__V, oldV, newV); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * * * @generated */ public void setV(GuiObject newV) { if (newV != v) { NotificationChain msgs = null; if (v != null) msgs = ((InternalEObject)v).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - ModelPackage.GUI_OBJECT_VALUE_OBJECT__V, null, msgs); if (newV != null) msgs = ((InternalEObject)newV).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - ModelPackage.GUI_OBJECT_VALUE_OBJECT__V, null, msgs); msgs = basicSetV(newV, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ModelPackage.GUI_OBJECT_VALUE_OBJECT__V, newV, newV)); } /** * * * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case ModelPackage.GUI_OBJECT_VALUE_OBJECT__V: return basicSetV(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case ModelPackage.GUI_OBJECT_VALUE_OBJECT__V: return getV(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case ModelPackage.GUI_OBJECT_VALUE_OBJECT__V: setV((GuiObject)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case ModelPackage.GUI_OBJECT_VALUE_OBJECT__V: setV((GuiObject)null); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case ModelPackage.GUI_OBJECT_VALUE_OBJECT__V: return v != null; } return super.eIsSet(featureID); } } //GuiObjectValueObjectImpl