blob: fa41d0a859202b36112f07ad7219146ab93c60ea [file] [log] [blame]
/**
* <copyright>
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
* </copyright>
*
* $Id: PartnerlinktypeFactoryImpl.java,v 1.5 2011/03/30 18:54:25 rbrodt Exp $
*/
package org.eclipse.bpel.model.partnerlinktype.impl;
import org.eclipse.bpel.model.partnerlinktype.*;
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 PartnerlinktypeFactoryImpl extends EFactoryImpl implements
PartnerlinktypeFactory {
/**
* Creates the default factory implementation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static PartnerlinktypeFactory init() {
try {
PartnerlinktypeFactory thePartnerlinktypeFactory = (PartnerlinktypeFactory)EPackage.Registry.INSTANCE.getEFactory("http://docs.oasis-open.org/wsbpel/2.0/plnktype");
if (thePartnerlinktypeFactory != null) {
return thePartnerlinktypeFactory;
}
}
catch (Exception exception) {
EcorePlugin.INSTANCE.log(exception);
}
return new PartnerlinktypeFactoryImpl();
}
/**
* Creates an instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public PartnerlinktypeFactoryImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public EObject create(EClass eClass) {
switch (eClass.getClassifierID()) {
case PartnerlinktypePackage.PARTNER_LINK_TYPE: return createPartnerLinkType();
case PartnerlinktypePackage.ROLE: return createRole();
default:
throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier");
}
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public PartnerLinkType createPartnerLinkType() {
PartnerLinkTypeImpl partnerLinkType = new PartnerLinkTypeImpl();
return partnerLinkType;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Role createRole() {
RoleImpl role = new RoleImpl();
return role;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public PartnerlinktypePackage getPartnerlinktypePackage() {
return (PartnerlinktypePackage)getEPackage();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @deprecated
* @generated
*/
@Deprecated
public static PartnerlinktypePackage getPackage() {
return PartnerlinktypePackage.eINSTANCE;
}
} //PartnerlinktypeFactoryImpl