/** * <copyright> * * Copyright (c) 2015 Willink Transformations and others. * 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: * E.D.Willink - Initial API and implementation * * </copyright> */ package codegen.company.impl; import codegen.company.*; 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 CodegencompanyFactoryImpl extends EFactoryImpl implements CodegencompanyFactory { /** * Creates the default factory implementation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static CodegencompanyFactory init() { try { CodegencompanyFactory theCodegencompanyFactory = (CodegencompanyFactory)EPackage.Registry.INSTANCE.getEFactory(CodegencompanyPackage.eNS_URI); if (theCodegencompanyFactory != null) { return theCodegencompanyFactory; } } catch (Exception exception) { EcorePlugin.INSTANCE.log(exception); } return new CodegencompanyFactoryImpl(); } /** * Creates an instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public CodegencompanyFactoryImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { case CodegencompanyPackage.COMPANY: return createCompany(); case CodegencompanyPackage.EMPLOYEE: return createEmployee(); case CodegencompanyPackage.BUG418716: return createBug418716(); default: throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); //$NON-NLS-1$ //$NON-NLS-2$ } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object createFromString(EDataType eDataType, String initialValue) { switch (eDataType.getClassifierID()) { case CodegencompanyPackage.COMPANY_SIZE_KIND: return createCompanySizeKindFromString(eDataType, initialValue); default: throw new IllegalArgumentException("The datatype '" + eDataType.getName() + "' is not a valid classifier"); //$NON-NLS-1$ //$NON-NLS-2$ } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String convertToString(EDataType eDataType, Object instanceValue) { switch (eDataType.getClassifierID()) { case CodegencompanyPackage.COMPANY_SIZE_KIND: return convertCompanySizeKindToString(eDataType, instanceValue); default: throw new IllegalArgumentException("The datatype '" + eDataType.getName() + "' is not a valid classifier"); //$NON-NLS-1$ //$NON-NLS-2$ } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Company createCompany() { CompanyImpl company = new CompanyImpl(); return company; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Employee createEmployee() { EmployeeImpl employee = new EmployeeImpl(); return employee; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Bug418716 createBug418716() { Bug418716Impl bug418716 = new Bug418716Impl(); return bug418716; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public CompanySizeKind createCompanySizeKindFromString(EDataType eDataType, String initialValue) { CompanySizeKind result = CompanySizeKind.get(initialValue); if (result == null) throw new IllegalArgumentException("The value '" + initialValue + "' is not a valid enumerator of '" + eDataType.getName() + "'"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ return result; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String convertCompanySizeKindToString(EDataType eDataType, Object instanceValue) { return instanceValue == null ? null : instanceValue.toString(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public CodegencompanyPackage getCodegencompanyPackage() { return (CodegencompanyPackage)getEPackage(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @deprecated * @generated */ @Deprecated public static CodegencompanyPackage getPackage() { return CodegencompanyPackage.eINSTANCE; } } //CodegencompanyFactoryImpl