/** * <copyright> * </copyright> * * $Id$ */ package data.documents.impl; import data.documents.*; 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 DocumentsFactoryImpl extends EFactoryImpl implements DocumentsFactory { /** * Creates the default factory implementation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static DocumentsFactory init() { try { DocumentsFactory theDocumentsFactory = (DocumentsFactory)EPackage.Registry.INSTANCE.getEFactory("http:///data/documents.ecore"); if (theDocumentsFactory != null) { return theDocumentsFactory; } } catch (Exception exception) { EcorePlugin.INSTANCE.log(exception); } return new DocumentsFactoryImpl(); } /** * Creates an instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public DocumentsFactoryImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { case DocumentsPackage.DUMMY: return createDummy(); default: throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Dummy createDummy() { DummyImpl dummy = new DummyImpl(); return dummy; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public DocumentsPackage getDocumentsPackage() { return (DocumentsPackage)getEPackage(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @deprecated * @generated */ @Deprecated public static DocumentsPackage getPackage() { return DocumentsPackage.eINSTANCE; } } //DocumentsFactoryImpl