blob: 4e07aea39a53a1787d106d8b816c4ec9ee3c552e [file] [log] [blame]
/**
* Copyright (c) 2011-2014 EclipseSource Muenchen GmbH and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Johannes Faltermeier - initial API and implementation
*/
package org.eclipse.emf.ecp.view.mapping.test.example.impl;
import org.eclipse.emf.common.notify.NotificationChain;
import org.eclipse.emf.common.util.EMap;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.MinimalEObjectImpl;
import org.eclipse.emf.ecore.util.EcoreEMap;
import org.eclipse.emf.ecore.util.InternalEList;
import org.eclipse.emf.ecp.view.mapping.test.example.AbstractChild;
import org.eclipse.emf.ecp.view.mapping.test.example.ExamplePackage;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Container</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.emf.ecp.view.mapping.test.example.impl.ContainerImpl#getChildren <em>Children</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class ContainerImpl extends MinimalEObjectImpl.Container implements
org.eclipse.emf.ecp.view.mapping.test.example.Container {
/**
* The cached value of the '{@link #getChildren() <em>Children</em>}' map.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @see #getChildren()
* @generated
* @ordered
*/
protected EMap<EClass, AbstractChild> children;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
protected ContainerImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return ExamplePackage.Literals.CONTAINER;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
public EMap<EClass, AbstractChild> getChildren() {
if (children == null) {
children = new EcoreEMap<EClass, AbstractChild>(ExamplePackage.Literals.ECLASS_TO_ADDITION_MAP,
EClassToAdditionMapImpl.class, this, ExamplePackage.CONTAINER__CHILDREN);
}
return children;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case ExamplePackage.CONTAINER__CHILDREN:
return ((InternalEList<?>) getChildren()).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 ExamplePackage.CONTAINER__CHILDREN:
if (coreType) {
return getChildren();
}
return getChildren().map();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case ExamplePackage.CONTAINER__CHILDREN:
((EStructuralFeature.Setting) getChildren()).set(newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case ExamplePackage.CONTAINER__CHILDREN:
getChildren().clear();
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case ExamplePackage.CONTAINER__CHILDREN:
return children != null && !children.isEmpty();
}
return super.eIsSet(featureID);
}
} // ContainerImpl