/** * 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.util.EList; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.EObjectImpl; import org.eclipse.emf.ecore.util.EObjectResolvingEList; import org.eclipse.emf.internal.cdo.CDOObjectImpl; import org.obeonetwork.dsl.typeslibrary.TypesLibrary; import org.obeonetwork.dsl.typeslibrary.TypesLibraryPackage; import org.obeonetwork.dsl.typeslibrary.TypesLibraryUser; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>User</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.obeonetwork.dsl.typeslibrary.impl.TypesLibraryUserImpl#getUsedLibraries <em>Used Libraries</em>}</li> * </ul> * </p> * * @generated */ public abstract class TypesLibraryUserImpl extends CDOObjectImpl implements TypesLibraryUser { /** * <!-- 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 TypesLibraryUserImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return TypesLibraryPackage.Literals.TYPES_LIBRARY_USER; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected int eStaticFeatureCount() { return 0; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") public EList<TypesLibrary> getUsedLibraries() { return (EList<TypesLibrary>)eDynamicGet(TypesLibraryPackage.TYPES_LIBRARY_USER__USED_LIBRARIES, TypesLibraryPackage.Literals.TYPES_LIBRARY_USER__USED_LIBRARIES, true, true); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case TypesLibraryPackage.TYPES_LIBRARY_USER__USED_LIBRARIES: return getUsedLibraries(); } 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.TYPES_LIBRARY_USER__USED_LIBRARIES: getUsedLibraries().clear(); getUsedLibraries().addAll((Collection<? extends TypesLibrary>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case TypesLibraryPackage.TYPES_LIBRARY_USER__USED_LIBRARIES: getUsedLibraries().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case TypesLibraryPackage.TYPES_LIBRARY_USER__USED_LIBRARIES: return !getUsedLibraries().isEmpty(); } return super.eIsSet(featureID); } } //TypesLibraryUserImpl