blob: 001cbd2fa3b5a3eff63539bbbd75a243bad4b018 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Test Report Participant</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A summary of information based on the results of executing a TestScript.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.TestReportParticipant#getType <em>Type</em>}</li>
* <li>{@link org.hl7.fhir.TestReportParticipant#getUri <em>Uri</em>}</li>
* <li>{@link org.hl7.fhir.TestReportParticipant#getDisplay <em>Display</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getTestReportParticipant()
* @model extendedMetaData="name='TestReport.Participant' kind='elementOnly'"
* @generated
*/
public interface TestReportParticipant extends BackboneElement {
/**
* Returns the value of the '<em><b>Type</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The type of participant.
* <!-- end-model-doc -->
* @return the value of the '<em>Type</em>' containment reference.
* @see #setType(TestReportParticipantType)
* @see org.hl7.fhir.FhirPackage#getTestReportParticipant_Type()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='type' namespace='##targetNamespace'"
* @generated
*/
TestReportParticipantType getType();
/**
* Sets the value of the '{@link org.hl7.fhir.TestReportParticipant#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(TestReportParticipantType value);
/**
* Returns the value of the '<em><b>Uri</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The uri of the participant. An absolute URL is preferred.
* <!-- end-model-doc -->
* @return the value of the '<em>Uri</em>' containment reference.
* @see #setUri(Uri)
* @see org.hl7.fhir.FhirPackage#getTestReportParticipant_Uri()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='uri' namespace='##targetNamespace'"
* @generated
*/
Uri getUri();
/**
* Sets the value of the '{@link org.hl7.fhir.TestReportParticipant#getUri <em>Uri</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Uri</em>' containment reference.
* @see #getUri()
* @generated
*/
void setUri(Uri value);
/**
* Returns the value of the '<em><b>Display</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The display name of the participant.
* <!-- end-model-doc -->
* @return the value of the '<em>Display</em>' containment reference.
* @see #setDisplay(org.hl7.fhir.String)
* @see org.hl7.fhir.FhirPackage#getTestReportParticipant_Display()
* @model containment="true"
* extendedMetaData="kind='element' name='display' namespace='##targetNamespace'"
* @generated
*/
org.hl7.fhir.String getDisplay();
/**
* Sets the value of the '{@link org.hl7.fhir.TestReportParticipant#getDisplay <em>Display</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Display</em>' containment reference.
* @see #getDisplay()
* @generated
*/
void setDisplay(org.hl7.fhir.String value);
} // TestReportParticipant