blob: 40b33a71d890c2452f2269a9df2a92b9da6175e7 [file] [log] [blame]
// DiseaseModelLabel.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
*******************************************************************************/
import org.eclipse.emf.common.util.URI;
import org.eclipse.stem.core.STEMURI;
import org.eclipse.stem.core.graph.DynamicNodeLabel;
import org.eclipse.stem.definitions.labels.PopulationLabel;
import org.eclipse.stem.populationmodels.standard.PopulationModelLabel;
/**
* This interface defines a class in an EMF model for an STEM Disease model
* label. It is the top-level disease model, all other disease model labels
* derive from this class.
*
* @model abstract="true"
*/
public interface DiseaseModelLabel extends DynamicNodeLabel {
/**
* This is the top-level segment for all type URI's for disease model
* labels.
*/
String URI_TYPE_DISEASE_MODEL_LABEL_SEGMENT = URI_TYPE_DYNAMIC_LABEL_SEGMENT
+ "/diseasemodel";
/**
* This is the type URI for disease model labels
*/
URI URI_TYPE_SIR_LABEL = STEMURI
.createTypeURI(URI_TYPE_DISEASE_MODEL_LABEL_SEGMENT);
/**
* This is the Population being infected by a Disease. The values for this
* disease model label apply to the population represented by the population
* label.
*
* @return the Population affected by the disease.
*
* @model
*/
PopulationLabel getPopulationLabel();
/**
* Sets the value of the '{@link org.eclipse.stem.diseasemodels.standard.DiseaseModelLabel#getPopulationLabel <em>Population Label</em>}' reference.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @param value the new value of the '<em>Population Label</em>' reference.
* @see #getPopulationLabel()
* @generated
*/
void setPopulationLabel(PopulationLabel value);
/**
* Returns the value of the '<em><b>Population Model Label</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Population Model Label</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Population Model Label</em>' reference.
* @see #setPopulationModelLabel(PopulationModelLabel)
* @see org.eclipse.stem.diseasemodels.standard.StandardPackage#getDiseaseModelLabel_PopulationModelLabel()
* @model
* @generated
*/
PopulationModelLabel getPopulationModelLabel();
/**
* Sets the value of the '{@link org.eclipse.stem.diseasemodels.standard.DiseaseModelLabel#getPopulationModelLabel <em>Population Model Label</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Population Model Label</em>' reference.
* @see #getPopulationModelLabel()
* @generated
*/
void setPopulationModelLabel(PopulationModelLabel value);
} // DiseaseModelLabel