/******************************************************************************* * Copyright (c) 2010 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: * C.Damus, K.Hussey, E.D.Willink - Initial API and implementation *******************************************************************************/ package company.impl; import 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 CompanyFactoryImpl extends EFactoryImpl implements CompanyFactory { /** * Creates the default factory implementation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static CompanyFactory init() { try { CompanyFactory theCompanyFactory = (CompanyFactory)EPackage.Registry.INSTANCE.getEFactory(CompanyPackage.eNS_URI); if (theCompanyFactory != null) { return theCompanyFactory; } } catch (Exception exception) { EcorePlugin.INSTANCE.log(exception); } return new CompanyFactoryImpl(); } /** * Creates an instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public CompanyFactoryImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { case CompanyPackage.COMPANY: return createCompany(); case CompanyPackage.EMPLOYEE: return createEmployee(); case CompanyPackage.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 CompanyPackage.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 CompanyPackage.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 CompanyPackage getCompanyPackage() { return (CompanyPackage)getEPackage(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @deprecated * @generated */ @Deprecated public static CompanyPackage getPackage() { return CompanyPackage.eINSTANCE; } } //CompanyFactoryImpl