/******************************************************************************* * Copyright (c) 2007 Borland Software Corporation 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: * Borland Software Corporation - initial API and implementation *******************************************************************************/ package rdb.datatypes.impl; import org.eclipse.emf.ecore.EClass; 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; import rdb.datatypes.DatatypesFactory; import rdb.datatypes.DatatypesPackage; import rdb.datatypes.Domain; import rdb.datatypes.PrimitiveDataType; /** * <!-- begin-user-doc --> * An implementation of the model <b>Factory</b>. * <!-- end-user-doc --> * @generated */ public class DatatypesFactoryImpl extends EFactoryImpl implements DatatypesFactory { /** * Creates the default factory implementation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static DatatypesFactory init() { try { DatatypesFactory theDatatypesFactory = (DatatypesFactory)EPackage.Registry.INSTANCE.getEFactory("http://www.eclipse.org/qvt/1.0.0/Operational/examples/rdb/datatypes"); //$NON-NLS-1$ if (theDatatypesFactory != null) { return theDatatypesFactory; } } catch (Exception exception) { EcorePlugin.INSTANCE.log(exception); } return new DatatypesFactoryImpl(); } /** * Creates an instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public DatatypesFactoryImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { case DatatypesPackage.DOMAIN: return createDomain(); case DatatypesPackage.PRIMITIVE_DATA_TYPE: return createPrimitiveDataType(); 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 */ public Domain createDomain() { DomainImpl domain = new DomainImpl(); return domain; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public PrimitiveDataType createPrimitiveDataType() { PrimitiveDataTypeImpl primitiveDataType = new PrimitiveDataTypeImpl(); return primitiveDataType; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public DatatypesPackage getDatatypesPackage() { return (DatatypesPackage)getEPackage(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @deprecated * @generated */ @Deprecated public static DatatypesPackage getPackage() { return DatatypesPackage.eINSTANCE; } } //DatatypesFactoryImpl