/** * Copyright (c) 2009 TIBCO Software Inc. 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: * Adrian Price */ package org.eclipse.emf.test.models.switch2.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.emf.test.models.switch2.EClass2; import org.eclipse.emf.test.models.switch2.EClass3; import org.eclipse.emf.test.models.switch2.Switch2Factory; import org.eclipse.emf.test.models.switch2.Switch2Package; /** * <!-- begin-user-doc --> * An implementation of the model <b>Factory</b>. * <!-- end-user-doc --> * @generated */ public class Switch2FactoryImpl extends EFactoryImpl implements Switch2Factory { /** * Creates the default factory implementation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static Switch2Factory init() { try { Switch2Factory theSwitch2Factory = (Switch2Factory)EPackage.Registry.INSTANCE.getEFactory(Switch2Package.eNS_URI); if (theSwitch2Factory != null) { return theSwitch2Factory; } } catch (Exception exception) { EcorePlugin.INSTANCE.log(exception); } return new Switch2FactoryImpl(); } /** * Creates an instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Switch2FactoryImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { case Switch2Package.ECLASS2: return createEClass2(); case Switch2Package.ECLASS3: return createEClass3(); default: throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EClass2 createEClass2() { EClass2Impl eClass2 = new EClass2Impl(); return eClass2; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EClass3 createEClass3() { EClass3Impl eClass3 = new EClass3Impl(); return eClass3; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Switch2Package getSwitch2Package() { return (Switch2Package)getEPackage(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @deprecated * @generated */ @Deprecated public static Switch2Package getPackage() { return Switch2Package.eINSTANCE; } } //Switch2FactoryImpl