blob: dc8498b7a778eb06a6dea5716b5cc7d6d6ded1c9 [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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Joerg Riegel - Initial implementation
*
*/
package org.eclipse.osbp.xtext.chart.impl;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.MinimalEObjectImpl;
import org.eclipse.osbp.xtext.chart.ChartDSLPackage;
import org.eclipse.osbp.xtext.chart.ChartLazyResolver;
import org.eclipse.osbp.xtext.oxtype.resource.EcoreUtil3;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Chart Lazy Resolver</b></em>'.
* <!-- end-user-doc -->
*
* @generated
*/
public class ChartLazyResolverImpl extends MinimalEObjectImpl.Container implements ChartLazyResolver {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ChartLazyResolverImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return ChartDSLPackage.Literals.CHART_LAZY_RESOLVER;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EObject eResolveProxy(final InternalEObject proxy) {
return EcoreUtil3.resolve(proxy, this.eResource().getResourceSet());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eInvoke(int operationID, EList<?> arguments) throws InvocationTargetException {
switch (operationID) {
case ChartDSLPackage.CHART_LAZY_RESOLVER___ERESOLVE_PROXY__INTERNALEOBJECT:
return eResolveProxy((InternalEObject)arguments.get(0));
}
return super.eInvoke(operationID, arguments);
}
} //ChartLazyResolverImpl