Package ca.uhn.fhir.model.dstu.composite

Examples of ca.uhn.fhir.model.dstu.composite.CodeableConceptDt


     * The code for the lab service provided.
     * </p>
   */
  public CodeableConceptDt getService() { 
    if (myService == null) {
      myService = new CodeableConceptDt();
    }
    return myService;
  }
View Full Code Here


     * Source of the specimen
     * </p>
   */
  public CodeableConceptDt getSource() { 
    if (mySource == null) {
      mySource = new CodeableConceptDt();
    }
    return mySource;
  }
View Full Code Here

     * Specifies the particular kind of document (e.g. Patient Summary, Discharge Summary, Prescription, etc.)
     * </p>
   */
  public CodeableConceptDt getType() { 
    if (myType == null) {
      myType = new CodeableConceptDt();
    }
    return myType;
  }
View Full Code Here

     * A categorization for the type of the document. This may be implied by or derived from the code specified in the Document Type
     * </p>
   */
  public CodeableConceptDt getClassElement() { 
    if (myClassElement == null) {
      myClassElement = new CodeableConceptDt();
    }
    return myClassElement;
  }
View Full Code Here

     * The status of the underlying document
     * </p>
   */
  public CodeableConceptDt getDocStatus() { 
    if (myDocStatus == null) {
      myDocStatus = new CodeableConceptDt();
    }
    return myDocStatus;
  }
View Full Code Here

     * <b>Definition:</b>
     * A code specifying the level of confidentiality of the XDS Document
     * </p>
   */
  public CodeableConceptDt addConfidentiality() {
    CodeableConceptDt newType = new CodeableConceptDt();
    getConfidentiality().add(newType);
    return newType;
  }
View Full Code Here

     * The type of the service that can be used to access the documents
     * </p>
   */
  public CodeableConceptDt getType() { 
    if (myType == null) {
      myType = new CodeableConceptDt();
    }
    return myType;
  }
View Full Code Here

     * <b>Definition:</b>
     * This list of codes represents the main clinical acts, such as a colonoscopy or an appendectomy, being documented. In some cases, the event is inherent in the typeCode, such as a \"History and Physical Report\" in which the procedure being documented is necessarily a \"History and Physical\" act
     * </p>
   */
  public CodeableConceptDt addEvent() {
    CodeableConceptDt newType = new CodeableConceptDt();
    getEvent().add(newType);
    return newType;
  }
View Full Code Here

     * The kind of facility where the patient was seen
     * </p>
   */
  public CodeableConceptDt getFacilityType() { 
    if (myFacilityType == null) {
      myFacilityType = new CodeableConceptDt();
    }
    return myFacilityType;
  }
View Full Code Here

     * Describes the compartment
     * </p>
   */
  public CodeableConceptDt getCode() { 
    if (myCode == null) {
      myCode = new CodeableConceptDt();
    }
    return myCode;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.dstu.composite.CodeableConceptDt

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.