blob: c093d5475d22de58cf11cfadb962bb65b5e91f56 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Medicinal Product Name Part</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Detailed definition of a medicinal product, typically for uses other than direct patient care (e.g. regulatory use).
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.MedicinalProductNamePart#getPart <em>Part</em>}</li>
* <li>{@link org.hl7.fhir.MedicinalProductNamePart#getType <em>Type</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getMedicinalProductNamePart()
* @model extendedMetaData="name='MedicinalProduct.NamePart' kind='elementOnly'"
* @generated
*/
public interface MedicinalProductNamePart extends BackboneElement {
/**
* Returns the value of the '<em><b>Part</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A fragment of a product name.
* <!-- end-model-doc -->
* @return the value of the '<em>Part</em>' containment reference.
* @see #setPart(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getMedicinalProductNamePart_Part()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='part' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getPart();
/**
* Sets the value of the '{@link org.hl7.fhir.MedicinalProductNamePart#getPart <em>Part</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Part</em>' containment reference.
* @see #getPart()
* @generated
*/
void setPart(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 -->
* Idenifying type for this part of the name (e.g. strength part).
* <!-- end-model-doc -->
* @return the value of the '<em>Type</em>' containment reference.
* @see #setType(Coding)
* @see org.hl7.fhir.FhirPackage#getMedicinalProductNamePart_Type()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='type' namespace='##targetNamespace'"
* @generated
*/
Coding getType();
/**
* Sets the value of the '{@link org.hl7.fhir.MedicinalProductNamePart#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(Coding value);
} // MedicinalProductNamePart