/** * <copyright> * </copyright> * * $Id$ */ package edu.isistan.uima.unified.typesystems.impl; import edu.isistan.uima.unified.typesystems.*; 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 TypesystemsFactoryImpl extends EFactoryImpl implements TypesystemsFactory { /** * Creates the default factory implementation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static TypesystemsFactory init() { try { TypesystemsFactory theTypesystemsFactory = (TypesystemsFactory)EPackage.Registry.INSTANCE.getEFactory("http:///edu/isistan/uima/unified/typesystems.ecore"); if (theTypesystemsFactory != null) { return theTypesystemsFactory; } } catch (Exception exception) { EcorePlugin.INSTANCE.log(exception); } return new TypesystemsFactoryImpl(); } /** * Creates an instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public TypesystemsFactoryImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { case TypesystemsPackage.IDENTIFIABLE_ANNOTATION: return createIdentifiableAnnotation(); default: throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public IdentifiableAnnotation createIdentifiableAnnotation() { IdentifiableAnnotationImpl identifiableAnnotation = new IdentifiableAnnotationImpl(); return identifiableAnnotation; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public TypesystemsPackage getTypesystemsPackage() { return (TypesystemsPackage)getEPackage(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @deprecated * @generated */ @Deprecated public static TypesystemsPackage getPackage() { return TypesystemsPackage.eINSTANCE; } } //TypesystemsFactoryImpl