/*- * ============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.openstack.ceilometer.impl; import org.openecomp.ncomp.openstack.ceilometer.CeilometerPackage; import org.openecomp.ncomp.openstack.ceilometer.CeilometerQuery; import org.openecomp.ncomp.openstack.ceilometer.SampleRequest; 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 'Sample Request'. * *

* The following features are implemented: *

* * * @generated */ public class SampleRequestImpl extends CeilometerRequestImpl implements SampleRequest { /** * The cached value of the '{@link #getQuery() Query}' containment reference. * * * @see #getQuery() * @generated * @ordered */ protected CeilometerQuery query; /** * * * @generated */ protected SampleRequestImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return CeilometerPackage.Literals.SAMPLE_REQUEST; } /** * * * @generated */ public CeilometerQuery getQuery() { return query; } /** * * * @generated */ public NotificationChain basicSetQuery(CeilometerQuery newQuery, NotificationChain msgs) { CeilometerQuery oldQuery = query; query = newQuery; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, CeilometerPackage.SAMPLE_REQUEST__QUERY, oldQuery, newQuery); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * * * @generated */ public void setQuery(CeilometerQuery newQuery) { if (newQuery != query) { NotificationChain msgs = null; if (query != null) msgs = ((InternalEObject)query).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - CeilometerPackage.SAMPLE_REQUEST__QUERY, null, msgs); if (newQuery != null) msgs = ((InternalEObject)newQuery).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - CeilometerPackage.SAMPLE_REQUEST__QUERY, null, msgs); msgs = basicSetQuery(newQuery, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, CeilometerPackage.SAMPLE_REQUEST__QUERY, newQuery, newQuery)); } /** * * * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case CeilometerPackage.SAMPLE_REQUEST__QUERY: return basicSetQuery(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case CeilometerPackage.SAMPLE_REQUEST__QUERY: return getQuery(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case CeilometerPackage.SAMPLE_REQUEST__QUERY: setQuery((CeilometerQuery)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case CeilometerPackage.SAMPLE_REQUEST__QUERY: setQuery((CeilometerQuery)null); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case CeilometerPackage.SAMPLE_REQUEST__QUERY: return query != null; } return super.eIsSet(featureID); } } //SampleRequestImpl