/** * Copyright (c) 2011 Obeo. * 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: * Obeo - initial API and implementation */ package org.obeonetwork.dsl.typeslibrary.impl; 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; import org.obeonetwork.dsl.typeslibrary.ComplexNamedType; import org.obeonetwork.dsl.typeslibrary.TypesLibraryPackage; import org.obeonetwork.dsl.typeslibrary.UserDefinedType; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Complex Named Type</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.obeonetwork.dsl.typeslibrary.impl.ComplexNamedTypeImpl#getTypes <em>Types</em>}</li> * </ul> * </p> * * @generated */ public class ComplexNamedTypeImpl extends UserDefinedTypeImpl implements ComplexNamedType { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static final String copyright = "Copyright (c) 2011 Obeo.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Obeo - initial API and implementation"; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ComplexNamedTypeImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return TypesLibraryPackage.Literals.COMPLEX_NAMED_TYPE; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") public EList<UserDefinedType> getTypes() { return (EList<UserDefinedType>)eDynamicGet(TypesLibraryPackage.COMPLEX_NAMED_TYPE__TYPES, TypesLibraryPackage.Literals.COMPLEX_NAMED_TYPE__TYPES, true, true); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case TypesLibraryPackage.COMPLEX_NAMED_TYPE__TYPES: return ((InternalEList<?>)getTypes()).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 TypesLibraryPackage.COMPLEX_NAMED_TYPE__TYPES: return getTypes(); } 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 TypesLibraryPackage.COMPLEX_NAMED_TYPE__TYPES: getTypes().clear(); getTypes().addAll((Collection<? extends UserDefinedType>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case TypesLibraryPackage.COMPLEX_NAMED_TYPE__TYPES: getTypes().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case TypesLibraryPackage.COMPLEX_NAMED_TYPE__TYPES: return !getTypes().isEmpty(); } return super.eIsSet(featureID); } } //ComplexNamedTypeImpl