/** * Copyright (c) 2007 IBM 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: * IBM - Initial API and implementation */ package org.eclipse.emf.test.models.lib.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.lib.Address; import org.eclipse.emf.test.models.lib.Book; import org.eclipse.emf.test.models.lib.Cafeteria; import org.eclipse.emf.test.models.lib.LibFactory; import org.eclipse.emf.test.models.lib.LibPackage; import org.eclipse.emf.test.models.lib.Library; import org.eclipse.emf.test.models.lib.Person; /** * <!-- begin-user-doc --> * An implementation of the model <b>Factory</b>. * <!-- end-user-doc --> * @generated */ public class LibFactoryImpl extends EFactoryImpl implements LibFactory { /** * Creates the default factory implementation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static LibFactory init() { try { LibFactory theLibFactory = (LibFactory)EPackage.Registry.INSTANCE.getEFactory(LibPackage.eNS_URI); if (theLibFactory != null) { return theLibFactory; } } catch (Exception exception) { EcorePlugin.INSTANCE.log(exception); } return new LibFactoryImpl(); } /** * Creates an instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public LibFactoryImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { case LibPackage.LIBRARY: return createLibrary(); case LibPackage.BOOK: return createBook(); case LibPackage.ADDRESS: return createAddress(); case LibPackage.PERSON: return createPerson(); case LibPackage.CAFETERIA: return createCafeteria(); default: throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Library createLibrary() { LibraryImpl library = new LibraryImpl(); return library; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Book createBook() { BookImpl book = new BookImpl(); return book; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Address createAddress() { AddressImpl address = new AddressImpl(); return address; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Person createPerson() { PersonImpl person = new PersonImpl(); return person; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Cafeteria createCafeteria() { CafeteriaImpl cafeteria = new CafeteriaImpl(); return cafeteria; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public LibPackage getLibPackage() { return (LibPackage)getEPackage(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @deprecated * @generated */ @Deprecated public static LibPackage getPackage() { return LibPackage.eINSTANCE; } } //LibFactoryImpl