blob: 5b6831c3cf182e9717649deb9a7b0c8d373f19c6 [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package org.eclipse.stem.diseasemodels.standard;
import org.eclipse.stem.core.model.NodeDecorator;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Disease Initializer</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.stem.diseasemodels.standard.DiseaseInitializer#getDiseaseName <em>Disease Name</em>}</li>
* <li>{@link org.eclipse.stem.diseasemodels.standard.DiseaseInitializer#getPopulationIdentifier <em>Population Identifier</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.stem.diseasemodels.standard.StandardPackage#getDiseaseInitializer()
* @model abstract="true"
* @generated
*/
public interface DiseaseInitializer extends NodeDecorator {
/**
* Returns the value of the '<em><b>Disease Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Disease Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Disease Name</em>' attribute.
* @see #setDiseaseName(String)
* @see org.eclipse.stem.diseasemodels.standard.StandardPackage#getDiseaseInitializer_DiseaseName()
* @model
* @generated
*/
String getDiseaseName();
/**
* Sets the value of the '{@link org.eclipse.stem.diseasemodels.standard.DiseaseInitializer#getDiseaseName <em>Disease Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Disease Name</em>' attribute.
* @see #getDiseaseName()
* @generated
*/
void setDiseaseName(String value);
/**
* Returns the value of the '<em><b>Population Identifier</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Population Identifier</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Population Identifier</em>' attribute.
* @see #setPopulationIdentifier(String)
* @see org.eclipse.stem.diseasemodels.standard.StandardPackage#getDiseaseInitializer_PopulationIdentifier()
* @model
* @generated
*/
String getPopulationIdentifier();
/**
* Sets the value of the '{@link org.eclipse.stem.diseasemodels.standard.DiseaseInitializer#getPopulationIdentifier <em>Population Identifier</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Population Identifier</em>' attribute.
* @see #getPopulationIdentifier()
* @generated
*/
void setPopulationIdentifier(String value);
} // DiseaseInitializer