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

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


     * <b>Definition:</b>
     *
     * </p>
   */
  public CodeableConceptDt addCodedDiagnosis() {
    CodeableConceptDt newType = new CodeableConceptDt();
    getCodedDiagnosis().add(newType);
    return newType;
  }
View Full Code Here


     * Describes what was observed. Sometimes this is called the observation \"code\"
     * </p>
   */
  public CodeableConceptDt getName() { 
    if (myName == null) {
      myName = new CodeableConceptDt();
    }
    return myName;
  }
View Full Code Here

     * Indicates where on the subject's body the observation was made.
     * </p>
   */
  public CodeableConceptDt getBodySite() { 
    if (myBodySite == null) {
      myBodySite = new CodeableConceptDt();
    }
    return myBodySite;
  }
View Full Code Here

     * Indicates the mechanism used to perform the observation
     * </p>
   */
  public CodeableConceptDt getMethod() { 
    if (myMethod == null) {
      myMethod = new CodeableConceptDt();
    }
    return myMethod;
  }
View Full Code Here

     * Code for the meaning of the reference range
     * </p>
   */
  public CodeableConceptDt getMeaning() { 
    if (myMeaning == null) {
      myMeaning = new CodeableConceptDt();
    }
    return myMeaning;
  }
View Full Code Here

     * <b>Definition:</b>
     * A code indicating why the medication was not taken.
     * </p>
   */
  public CodeableConceptDt addReasonNotGiven() {
    CodeableConceptDt newType = new CodeableConceptDt();
    getReasonNotGiven().add(newType);
    return newType;
  }
View Full Code Here

     * <b>Definition:</b>
     * Any complications that occurred during the procedure, or in the immediate post-operative period. These are generally tracked separately from the notes, which typically will describe the procedure itself rather than any 'post procedure' issues
     * </p>
   */
  public CodeableConceptDt addComplication() {
    CodeableConceptDt newType = new CodeableConceptDt();
    getComplication().add(newType);
    return newType;
  }
View Full Code Here

     * E.g. surgeon, anaethetist, endoscopist
     * </p>
   */
  public CodeableConceptDt getRole() { 
    if (myRole == null) {
      myRole = new CodeableConceptDt();
    }
    return myRole;
  }
View Full Code Here

     * Additional instructions such as \"Swallow with plenty of water\" which may or may not be coded.
     * </p>
   */
  public CodeableConceptDt getAdditionalInstructions() { 
    if (myAdditionalInstructions == null) {
      myAdditionalInstructions = new CodeableConceptDt();
    }
    return myAdditionalInstructions;
  }
View Full Code Here

     * A coded specification of the anatomic site where the medication first enters the body
     * </p>
   */
  public CodeableConceptDt getSite() { 
    if (mySite == null) {
      mySite = new CodeableConceptDt();
    }
    return mySite;
  }
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.