blob: 953d955d8fc8c3190e225a942348c60c39dc1be8 [file] [log] [blame]
package org.eclipse.stem.diseasemodels.standard.impl;
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
import org.eclipse.emf.ecore.EClass;
import org.eclipse.stem.core.graph.LabelValue;
import org.eclipse.stem.diseasemodels.standard.DeterministicSIRDiseaseModel;
import org.eclipse.stem.diseasemodels.standard.StandardFactory;
import org.eclipse.stem.diseasemodels.standard.StandardPackage;
/**
* <!-- begin-user-doc --> An implementation of the model object '<em><b>Deterministic SIR Disease Model</b></em>'.
* <!-- end-user-doc -->
* <p>
* </p>
*
* @generated
*/
public class DeterministicSIRDiseaseModelImpl extends SIRImpl implements
DeterministicSIRDiseaseModel {
/**
* <!-- begin-user-doc -->
*
* The constructor needs to be public so that the new disease wizard can
* create an instance of the class without using the factory.
*
* <!-- end-user-doc -->
*/
public DeterministicSIRDiseaseModelImpl() {
super();
} // DeterministicSIRDiseaseModelImpl
public void doModelSpecificAdjustments(LabelValue label) {
// Nothing
}
@Override
public boolean isDeterministic() {
return true;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return StandardPackage.Literals.DETERMINISTIC_SIR_DISEASE_MODEL;
}
} // DeterministicSIRDiseaseModelImpl