/******************************************************************************* * Copyright (c) 2007, 2009 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 org.eclipse.m2m.internal.qvt.oml.emf.util.urimap.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 org.eclipse.m2m.internal.qvt.oml.emf.util.urimap.MModelURIMapFactory; import org.eclipse.m2m.internal.qvt.oml.emf.util.urimap.MModelURIMapPackage; import org.eclipse.m2m.internal.qvt.oml.emf.util.urimap.MappingContainer; import org.eclipse.m2m.internal.qvt.oml.emf.util.urimap.URIMapping; /** * <!-- begin-user-doc --> * An implementation of the model <b>Factory</b>. * <!-- end-user-doc --> * @generated */ public class MModelURIMapFactoryImpl extends EFactoryImpl implements MModelURIMapFactory { /** * Creates the default factory implementation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static MModelURIMapFactory init() { try { MModelURIMapFactory theMModelURIMapFactory = (MModelURIMapFactory)EPackage.Registry.INSTANCE.getEFactory("http:///www.eclipse.org/m2m/qvt/oml/MModelUriMap/1.0.0"); //$NON-NLS-1$ if (theMModelURIMapFactory != null) { return theMModelURIMapFactory; } } catch (Exception exception) { EcorePlugin.INSTANCE.log(exception); } return new MModelURIMapFactoryImpl(); } /** * Creates an instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public MModelURIMapFactoryImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { case MModelURIMapPackage.MAPPING_CONTAINER: return createMappingContainer(); case MModelURIMapPackage.URI_MAPPING: return createURIMapping(); 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 MappingContainer createMappingContainer() { MappingContainerImpl mappingContainer = new MappingContainerImpl(); return mappingContainer; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public URIMapping createURIMapping() { URIMappingImpl uriMapping = new URIMappingImpl(); return uriMapping; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public MModelURIMapPackage getMModelURIMapPackage() { return (MModelURIMapPackage)getEPackage(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @deprecated * @generated */ @Deprecated public static MModelURIMapPackage getPackage() { return MModelURIMapPackage.eINSTANCE; } } //MModelURIMapFactoryImpl