blob: 222d04908d0231b36a1904928cb80cda4cfdc4a6 [file] [log] [blame]
// StochasticSIRDiseaseModel.java
package org.eclipse.stem.diseasemodels.standard;
/*******************************************************************************
* 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
*******************************************************************************/
/**
* This interface defines a class in an EMF model for an Stochastic SIR disease
* model.
*
* @see SIRLabel
* @see SIRLabelValue
*
* @model
*/
public interface StochasticSIRDiseaseModel extends SIR, StandardStochasticDiseaseModel {
/**
* This is the segment of the type URI that prefixes all other segments in a
* standard stochastic SIR disease model type URI.
*/
String URI_TYPE_STOCHASTIC_SIR_DISEASE_MODEL_SEGMENT = URI_TYPE_STANDARD_SIR_DISEASE_MODEL_SEGMENT
+ "/stochastic";
} // StochasticSIRDiseaseModel