blob: faf686761a04091a463a2e7fe5a0b2669cf8ec50 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Contract Rule</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A formal agreement between parties regarding the conduct of business, exchange of information or other matters.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.ContractRule#getContentAttachment <em>Content Attachment</em>}</li>
* <li>{@link org.hl7.fhir.ContractRule#getContentReference <em>Content Reference</em>}</li>
* </ul>
*
* @see org.hl7.fhir.FhirPackage#getContractRule()
* @model extendedMetaData="name='Contract.Rule' kind='elementOnly'"
* @generated
*/
public interface ContractRule extends BackboneElement {
/**
* Returns the value of the '<em><b>Content Attachment</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Content Attachment</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Content Attachment</em>' containment reference.
* @see #setContentAttachment(Attachment)
* @see org.hl7.fhir.FhirPackage#getContractRule_ContentAttachment()
* @model containment="true"
* extendedMetaData="kind='element' name='contentAttachment' namespace='##targetNamespace'"
* @generated
*/
Attachment getContentAttachment();
/**
* Sets the value of the '{@link org.hl7.fhir.ContractRule#getContentAttachment <em>Content Attachment</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Content Attachment</em>' containment reference.
* @see #getContentAttachment()
* @generated
*/
void setContentAttachment(Attachment value);
/**
* Returns the value of the '<em><b>Content Reference</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Content Reference</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Content Reference</em>' containment reference.
* @see #setContentReference(Reference)
* @see org.hl7.fhir.FhirPackage#getContractRule_ContentReference()
* @model containment="true"
* extendedMetaData="kind='element' name='contentReference' namespace='##targetNamespace'"
* @generated
*/
Reference getContentReference();
/**
* Sets the value of the '{@link org.hl7.fhir.ContractRule#getContentReference <em>Content Reference</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Content Reference</em>' containment reference.
* @see #getContentReference()
* @generated
*/
void setContentReference(Reference value);
} // ContractRule