/******************************************************************************* * Copyright (c) 2013 Jean-Marie Gauthier and University of Franche-Comte * 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: * Jean-Marie Gauthier and University of Franche-Comte - initial API and implementation *******************************************************************************/ package edu.ufc.femtost.disc.sysml4modelica.problemmetamodel.problem.impl; import edu.ufc.femtost.disc.sysml4modelica.problemmetamodel.problem.*; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EDataType; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EPackage; import org.eclipse.emf.ecore.impl.EFactoryImpl; import org.eclipse.emf.ecore.plugin.EcorePlugin; /** * <!-- begin-user-doc --> * An implementation of the model <b>Factory</b>. * <!-- end-user-doc --> * @generated */ public class problemFactoryImpl extends EFactoryImpl implements problemFactory { /** * Creates the default factory implementation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static problemFactory init() { try { problemFactory theproblemFactory = (problemFactory)EPackage.Registry.INSTANCE.getEFactory("http://www.femto-st.fr/disc/problem"); if (theproblemFactory != null) { return theproblemFactory; } } catch (Exception exception) { EcorePlugin.INSTANCE.log(exception); } return new problemFactoryImpl(); } /** * Creates an instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public problemFactoryImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { case problemPackage.PROBLEM: return createProblem(); default: throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object createFromString(EDataType eDataType, String initialValue) { switch (eDataType.getClassifierID()) { case problemPackage.SEVERITY: return createSeverityFromString(eDataType, initialValue); default: throw new IllegalArgumentException("The datatype '" + eDataType.getName() + "' is not a valid classifier"); } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String convertToString(EDataType eDataType, Object instanceValue) { switch (eDataType.getClassifierID()) { case problemPackage.SEVERITY: return convertSeverityToString(eDataType, instanceValue); default: throw new IllegalArgumentException("The datatype '" + eDataType.getName() + "' is not a valid classifier"); } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Problem createProblem() { ProblemImpl problem = new ProblemImpl(); return problem; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Severity createSeverityFromString(EDataType eDataType, String initialValue) { Severity result = Severity.get(initialValue); if (result == null) throw new IllegalArgumentException("The value '" + initialValue + "' is not a valid enumerator of '" + eDataType.getName() + "'"); return result; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String convertSeverityToString(EDataType eDataType, Object instanceValue) { return instanceValue == null ? null : instanceValue.toString(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public problemPackage getproblemPackage() { return (problemPackage)getEPackage(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @deprecated * @generated */ @Deprecated public static problemPackage getPackage() { return problemPackage.eINSTANCE; } } //problemFactoryImpl