/*- * ============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.docker.impl; import org.openecomp.ncomp.docker.DockerAdaptor; import org.openecomp.ncomp.docker.DockerHost; import org.openecomp.ncomp.docker.DockerPackage; import java.util.Collection; import org.eclipse.emf.common.notify.NotificationChain; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.MinimalEObjectImpl; import org.eclipse.emf.ecore.util.EObjectContainmentEList; import org.eclipse.emf.ecore.util.InternalEList; /** * * An implementation of the model object 'Adaptor'. * *

* The following features are implemented: *

*

* * @generated */ public class DockerAdaptorImpl extends MinimalEObjectImpl.Container implements DockerAdaptor { /** * The cached value of the '{@link #getDockerHosts() Docker Hosts}' containment reference list. * * * @see #getDockerHosts() * @generated * @ordered */ protected EList dockerHosts; /** * * * @generated */ protected DockerAdaptorImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return DockerPackage.Literals.DOCKER_ADAPTOR; } /** * * * @generated */ public EList getDockerHosts() { if (dockerHosts == null) { dockerHosts = new EObjectContainmentEList(DockerHost.class, this, DockerPackage.DOCKER_ADAPTOR__DOCKER_HOSTS); } return dockerHosts; } /** * * * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case DockerPackage.DOCKER_ADAPTOR__DOCKER_HOSTS: return ((InternalEList)getDockerHosts()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case DockerPackage.DOCKER_ADAPTOR__DOCKER_HOSTS: return getDockerHosts(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case DockerPackage.DOCKER_ADAPTOR__DOCKER_HOSTS: getDockerHosts().clear(); getDockerHosts().addAll((Collection)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case DockerPackage.DOCKER_ADAPTOR__DOCKER_HOSTS: getDockerHosts().clear(); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case DockerPackage.DOCKER_ADAPTOR__DOCKER_HOSTS: return dockerHosts != null && !dockerHosts.isEmpty(); } return super.eIsSet(featureID); } } //DockerAdaptorImpl