blob: 9e700102d5b0317e87ad83c9cd55cf874f03e15a [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* 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
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Christophe Loetz - Initial implementation
*
*/
package org.eclipse.osbp.xtext.functionlibrarydsl.impl;
import java.util.Collection;
import org.eclipse.emf.common.notify.Notification;
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.ENotificationImpl;
import org.eclipse.emf.ecore.util.EObjectContainmentEList;
import org.eclipse.emf.ecore.util.InternalEList;
import org.eclipse.osbp.dsl.semantic.common.types.impl.LPackageImpl;
import org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryConverterGroup;
import org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryDSLPackage;
import org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryGroup;
import org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryPackage;
import org.eclipse.osbp.xtext.functionlibrarydsl.FunctionLibraryRating;
import org.eclipse.xtext.xtype.XImportSection;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Function Library Package</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.osbp.xtext.functionlibrarydsl.impl.FunctionLibraryPackageImpl#getImportSection <em>Import Section</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.functionlibrarydsl.impl.FunctionLibraryPackageImpl#getRatings <em>Ratings</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.functionlibrarydsl.impl.FunctionLibraryPackageImpl#getGroups <em>Groups</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.functionlibrarydsl.impl.FunctionLibraryPackageImpl#getConverters <em>Converters</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class FunctionLibraryPackageImpl extends LPackageImpl implements FunctionLibraryPackage {
/**
* The cached value of the '{@link #getImportSection() <em>Import Section</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getImportSection()
* @generated
* @ordered
*/
protected XImportSection importSection;
/**
* The cached value of the '{@link #getRatings() <em>Ratings</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getRatings()
* @generated
* @ordered
*/
protected EList<FunctionLibraryRating> ratings;
/**
* The cached value of the '{@link #getGroups() <em>Groups</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getGroups()
* @generated
* @ordered
*/
protected EList<FunctionLibraryGroup> groups;
/**
* The cached value of the '{@link #getConverters() <em>Converters</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getConverters()
* @generated
* @ordered
*/
protected EList<FunctionLibraryConverterGroup> converters;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected FunctionLibraryPackageImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return FunctionLibraryDSLPackage.Literals.FUNCTION_LIBRARY_PACKAGE;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public XImportSection getImportSection() {
return importSection;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetImportSection(XImportSection newImportSection, NotificationChain msgs) {
XImportSection oldImportSection = importSection;
importSection = newImportSection;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__IMPORT_SECTION, oldImportSection, newImportSection);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setImportSection(XImportSection newImportSection) {
if (newImportSection != importSection) {
NotificationChain msgs = null;
if (importSection != null)
msgs = ((InternalEObject)importSection).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__IMPORT_SECTION, null, msgs);
if (newImportSection != null)
msgs = ((InternalEObject)newImportSection).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__IMPORT_SECTION, null, msgs);
msgs = basicSetImportSection(newImportSection, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__IMPORT_SECTION, newImportSection, newImportSection));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<FunctionLibraryRating> getRatings() {
if (ratings == null) {
ratings = new EObjectContainmentEList<FunctionLibraryRating>(FunctionLibraryRating.class, this, FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__RATINGS);
}
return ratings;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<FunctionLibraryGroup> getGroups() {
if (groups == null) {
groups = new EObjectContainmentEList<FunctionLibraryGroup>(FunctionLibraryGroup.class, this, FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__GROUPS);
}
return groups;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<FunctionLibraryConverterGroup> getConverters() {
if (converters == null) {
converters = new EObjectContainmentEList<FunctionLibraryConverterGroup>(FunctionLibraryConverterGroup.class, this, FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__CONVERTERS);
}
return converters;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__IMPORT_SECTION:
return basicSetImportSection(null, msgs);
case FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__RATINGS:
return ((InternalEList<?>)getRatings()).basicRemove(otherEnd, msgs);
case FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__GROUPS:
return ((InternalEList<?>)getGroups()).basicRemove(otherEnd, msgs);
case FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__CONVERTERS:
return ((InternalEList<?>)getConverters()).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 FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__IMPORT_SECTION:
return getImportSection();
case FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__RATINGS:
return getRatings();
case FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__GROUPS:
return getGroups();
case FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__CONVERTERS:
return getConverters();
}
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 FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__IMPORT_SECTION:
setImportSection((XImportSection)newValue);
return;
case FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__RATINGS:
getRatings().clear();
getRatings().addAll((Collection<? extends FunctionLibraryRating>)newValue);
return;
case FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__GROUPS:
getGroups().clear();
getGroups().addAll((Collection<? extends FunctionLibraryGroup>)newValue);
return;
case FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__CONVERTERS:
getConverters().clear();
getConverters().addAll((Collection<? extends FunctionLibraryConverterGroup>)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__IMPORT_SECTION:
setImportSection((XImportSection)null);
return;
case FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__RATINGS:
getRatings().clear();
return;
case FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__GROUPS:
getGroups().clear();
return;
case FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__CONVERTERS:
getConverters().clear();
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__IMPORT_SECTION:
return importSection != null;
case FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__RATINGS:
return ratings != null && !ratings.isEmpty();
case FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__GROUPS:
return groups != null && !groups.isEmpty();
case FunctionLibraryDSLPackage.FUNCTION_LIBRARY_PACKAGE__CONVERTERS:
return converters != null && !converters.isEmpty();
}
return super.eIsSet(featureID);
}
} //FunctionLibraryPackageImpl