/****************************************************************************** * 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.Connection; import com.sun.java.xml.ns.jbi.Connections; import com.sun.java.xml.ns.jbi.JbiPackage; 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.util.EObjectContainmentEList; import org.eclipse.emf.ecore.util.InternalEList; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Connections</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link com.sun.java.xml.ns.jbi.impl.ConnectionsImpl#getConnection <em>Connection</em>}</li> * </ul> * </p> * * @generated */ public class ConnectionsImpl extends AbstractExtensibleElementImpl implements Connections { /** * The cached value of the '{@link #getConnection() <em>Connection</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getConnection() * @generated * @ordered */ protected EList<Connection> connection; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ConnectionsImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return JbiPackage.Literals.CONNECTIONS; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<Connection> getConnection() { if (connection == null) { connection = new EObjectContainmentEList<Connection>(Connection.class, this, JbiPackage.CONNECTIONS__CONNECTION); } return connection; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case JbiPackage.CONNECTIONS__CONNECTION: return ((InternalEList<?>)getConnection()).basicRemove(otherEnd, 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.CONNECTIONS__CONNECTION: return getConnection(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case JbiPackage.CONNECTIONS__CONNECTION: getConnection().clear(); getConnection().addAll((Collection<? extends Connection>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case JbiPackage.CONNECTIONS__CONNECTION: getConnection().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case JbiPackage.CONNECTIONS__CONNECTION: return connection != null && !connection.isEmpty(); } return super.eIsSet(featureID); } } //ConnectionsImpl