/* * Copyright (c) 2013 Eike Stepper (Berlin, Germany) 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: * Christian W. Damus (CEA LIST) - initial API and implementation */ package org.eclipse.emf.cdo.server.internal.admin.catalog.impl; import org.eclipse.emf.cdo.server.internal.admin.catalog.CatalogFactory; import org.eclipse.emf.cdo.server.internal.admin.catalog.CatalogPackage; import org.eclipse.emf.cdo.server.internal.admin.catalog.RepositoryCatalog; import org.eclipse.emf.cdo.server.internal.admin.catalog.RepositoryConfiguration; 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; /** * <!-- begin-user-doc --> * An implementation of the model <b>Factory</b>. * <!-- end-user-doc --> * @generated */ public class CatalogFactoryImpl extends EFactoryImpl implements CatalogFactory { /** * Creates the default factory implementation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static CatalogFactory init() { try { CatalogFactory theCatalogFactory = (CatalogFactory)EPackage.Registry.INSTANCE.getEFactory(CatalogPackage.eNS_URI); if (theCatalogFactory != null) { return theCatalogFactory; } } catch (Exception exception) { EcorePlugin.INSTANCE.log(exception); } return new CatalogFactoryImpl(); } /** * Creates an instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public CatalogFactoryImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { case CatalogPackage.REPOSITORY_CATALOG: return createRepositoryCatalog(); case CatalogPackage.REPOSITORY_CONFIGURATION: return createRepositoryConfiguration(); default: throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public RepositoryCatalog createRepositoryCatalog() { RepositoryCatalogImpl repositoryCatalog = new RepositoryCatalogImpl(); return repositoryCatalog; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public RepositoryConfiguration createRepositoryConfiguration() { RepositoryConfigurationImpl repositoryConfiguration = new RepositoryConfigurationImpl(); return repositoryConfiguration; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public CatalogPackage getCatalogPackage() { return (CatalogPackage)getEPackage(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @deprecated * @generated */ @Deprecated public static CatalogPackage getPackage() { return CatalogPackage.eINSTANCE; } } // CatalogFactoryImpl