blob: f15a060866717199cd7825f9ece026e69caf5cde [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package org.eclipse.stem.diseasemodels.poliodiseasemodel.impl;
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;
import org.eclipse.stem.diseasemodels.poliodiseasemodel.*;
/**
* <!-- begin-user-doc -->
* An implementation of the model <b>Factory</b>.
* <!-- end-user-doc -->
* @generated
*/
public class PolioFactoryImpl extends EFactoryImpl implements PolioFactory {
/**
* Creates the default factory implementation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static PolioFactory init() {
try {
PolioFactory thePolioFactory = (PolioFactory)EPackage.Registry.INSTANCE.getEFactory("http:///org/eclipse/stem/diseasemodels/polio.ecore"); //$NON-NLS-1$
if (thePolioFactory != null) {
return thePolioFactory;
}
}
catch (Exception exception) {
EcorePlugin.INSTANCE.log(exception);
}
return new PolioFactoryImpl();
}
/**
* Creates an instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public PolioFactoryImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public EObject create(EClass eClass) {
switch (eClass.getClassifierID()) {
case PolioPackage.ORAL_POLIO_VACCINE_MODEL: return createOralPolioVaccineModel();
case PolioPackage.OPV_LABEL: return createOpvLabel();
case PolioPackage.OPV_LABEL_VALUE: return createOpvLabelValue();
default:
throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); //$NON-NLS-1$ //$NON-NLS-2$
}
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public OralPolioVaccineModel createOralPolioVaccineModel() {
OralPolioVaccineModelImpl oralPolioVaccineModel = new OralPolioVaccineModelImpl();
return oralPolioVaccineModel;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public OpvLabel createOpvLabel() {
OpvLabelImpl opvLabel = new OpvLabelImpl();
return opvLabel;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public OpvLabelValue createOpvLabelValue() {
OpvLabelValueImpl opvLabelValue = new OpvLabelValueImpl();
return opvLabelValue;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public PolioPackage getPolioPackage() {
return (PolioPackage)getEPackage();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @deprecated
* @generated
*/
@Deprecated
public static PolioPackage getPackage() {
return PolioPackage.eINSTANCE;
}
} //PolioFactoryImpl