blob: bdda0f0e7dea4e2d33a1e96a0a070c2f8e30db98 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2019 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - initial API and implementation
*******************************************************************************/
/**
*/
package manualuml2rdbms.uml2rdbms.impl;
import manualuml2rdbms.uml2rdbms.*;
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 UML2RDBMSFactoryImpl extends EFactoryImpl implements UML2RDBMSFactory {
/**
* Creates the default factory implementation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static UML2RDBMSFactory init() {
try {
UML2RDBMSFactory theUML2RDBMSFactory = (UML2RDBMSFactory)EPackage.Registry.INSTANCE.getEFactory(UML2RDBMSPackage.eNS_URI);
if (theUML2RDBMSFactory != null) {
return theUML2RDBMSFactory;
}
}
catch (Exception exception) {
EcorePlugin.INSTANCE.log(exception);
}
return new UML2RDBMSFactoryImpl();
}
/**
* Creates an instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public UML2RDBMSFactoryImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public EObject create(EClass eClass) {
switch (eClass.getClassifierID()) {
case 0: return createAttributeToColumn();
case 1: return createAssociationToForeignKey();
case 2: return createClassToTable();
case 5: return createNonLeafAttribute();
case 6: return createPackageToSchema();
case 7: return createPrimitiveToName();
case 8: return createToColumn();
default:
throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier");
}
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public AttributeToColumn createAttributeToColumn() {
AttributeToColumnImpl attributeToColumn = new AttributeToColumnImpl();
return attributeToColumn;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public AssociationToForeignKey createAssociationToForeignKey() {
AssociationToForeignKeyImpl associationToForeignKey = new AssociationToForeignKeyImpl();
return associationToForeignKey;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public ClassToTable createClassToTable() {
ClassToTableImpl classToTable = new ClassToTableImpl();
return classToTable;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NonLeafAttribute createNonLeafAttribute() {
NonLeafAttributeImpl nonLeafAttribute = new NonLeafAttributeImpl();
return nonLeafAttribute;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public PackageToSchema createPackageToSchema() {
PackageToSchemaImpl packageToSchema = new PackageToSchemaImpl();
return packageToSchema;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public PrimitiveToName createPrimitiveToName() {
PrimitiveToNameImpl primitiveToName = new PrimitiveToNameImpl();
return primitiveToName;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public ToColumn createToColumn() {
ToColumnImpl toColumn = new ToColumnImpl();
return toColumn;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public UML2RDBMSPackage getUML2RDBMSPackage() {
return (UML2RDBMSPackage)getEPackage();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @deprecated
* @generated
*/
@Deprecated
public static UML2RDBMSPackage getPackage() {
return UML2RDBMSPackage.eINSTANCE;
}
} //UML2RDBMSFactoryImpl