blob: d62acc9d794e076f1e3a22594ffffb70b5ae8007 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Module Definition Parameter</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* The ModuleDefinition resource defines the data requirements for a quality artifact.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.ModuleDefinitionParameter#getName <em>Name</em>}</li>
* <li>{@link org.hl7.fhir.ModuleDefinitionParameter#getUse <em>Use</em>}</li>
* <li>{@link org.hl7.fhir.ModuleDefinitionParameter#getDocumentation <em>Documentation</em>}</li>
* <li>{@link org.hl7.fhir.ModuleDefinitionParameter#getType <em>Type</em>}</li>
* <li>{@link org.hl7.fhir.ModuleDefinitionParameter#getProfile <em>Profile</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getModuleDefinitionParameter()
* @model extendedMetaData="name='ModuleDefinition.Parameter' kind='elementOnly'"
* @generated
*/
public interface ModuleDefinitionParameter extends BackboneElement {
/**
* Returns the value of the '<em><b>Name</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The name of the parameter.
* <!-- end-model-doc -->
* @return the value of the '<em>Name</em>' containment reference.
* @see #setName(Code)
* @see org.hl7.fhir.FhirPackage#getModuleDefinitionParameter_Name()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='name' namespace='##targetNamespace'"
* @generated
*/
Code getName();
/**
* Sets the value of the '{@link org.hl7.fhir.ModuleDefinitionParameter#getName <em>Name</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' containment reference.
* @see #getName()
* @generated
*/
void setName(Code value);
/**
* Returns the value of the '<em><b>Use</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Whether the parameter is input or output for the module.
* <!-- end-model-doc -->
* @return the value of the '<em>Use</em>' containment reference.
* @see #setUse(Code)
* @see org.hl7.fhir.FhirPackage#getModuleDefinitionParameter_Use()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='use' namespace='##targetNamespace'"
* @generated
*/
Code getUse();
/**
* Sets the value of the '{@link org.hl7.fhir.ModuleDefinitionParameter#getUse <em>Use</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Use</em>' containment reference.
* @see #getUse()
* @generated
*/
void setUse(Code value);
/**
* Returns the value of the '<em><b>Documentation</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A brief description of the parameter.
* <!-- end-model-doc -->
* @return the value of the '<em>Documentation</em>' containment reference.
* @see #setDocumentation(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getModuleDefinitionParameter_Documentation()
* @model containment="true"
* extendedMetaData="kind='element' name='documentation' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getDocumentation();
/**
* Sets the value of the '{@link org.hl7.fhir.ModuleDefinitionParameter#getDocumentation <em>Documentation</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Documentation</em>' containment reference.
* @see #getDocumentation()
* @generated
*/
void setDocumentation(org.hl7.fhir.String value);
/**
* Returns the value of the '<em><b>Type</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The type of the parameter.
* <!-- end-model-doc -->
* @return the value of the '<em>Type</em>' containment reference.
* @see #setType(Code)
* @see org.hl7.fhir.FhirPackage#getModuleDefinitionParameter_Type()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='type' namespace='##targetNamespace'"
* @generated
*/
Code getType();
/**
* Sets the value of the '{@link org.hl7.fhir.ModuleDefinitionParameter#getType <em>Type</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' containment reference.
* @see #getType()
* @generated
*/
void setType(Code value);
/**
* Returns the value of the '<em><b>Profile</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The profile of the parameter, if any.
* <!-- end-model-doc -->
* @return the value of the '<em>Profile</em>' containment reference.
* @see #setProfile(Reference)
* @see org.hl7.fhir.FhirPackage#getModuleDefinitionParameter_Profile()
* @model containment="true"
* extendedMetaData="kind='element' name='profile' namespace='##targetNamespace'"
* @generated
*/
Reference getProfile();
/**
* Sets the value of the '{@link org.hl7.fhir.ModuleDefinitionParameter#getProfile <em>Profile</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Profile</em>' containment reference.
* @see #getProfile()
* @generated
*/
void setProfile(Reference value);
} // ModuleDefinitionParameter