blob: 9f86c7fbed398291329bdd6e2e2fe9839ed69a51 [file] [log] [blame]
// AggregatingSEIRDiseaseModel.java
package org.eclipse.stem.diseasemodels.standard;
import org.eclipse.stem.core.model.Decorator;
/*******************************************************************************
* 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 aggregating SEIR
* disease model. This disease model determines its disease state values by
* summing (aggregating) the (next) values of the labels of other SEIR disease
* models. Typically, it is placed in a model that contains the target SEIR
* disease model so that its
* {@link Decorator#updateLabels(org.eclipse.stem.core.model.STEMTime, long)}
* method will be called after the contained disease model. This ensures that
* the "next" values that this model collects will be valid by the time it runs.
*
* @see SEIRLabel
* @see SEIRLabelValue
*
* @model
*/
public interface AggregatingSEIRDiseaseModel extends AggregatingSIRDiseaseModel {
/**
* This is the segment of the type URI that prefixes all other segments in a
* standard stochastic SEIR disease model type URI.
*/
String URI_TYPE_AGGREGATING_SEIR_DISEASE_MODEL_SEGMENT = URI_TYPE_AGGREGATING_SI_DISEASE_MODEL_SEGMENT
+ "/SEIR";
} // AggregatingSEIRDiseaseModel