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

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


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


     * The type of relationship this person has to the patient (father, mother, brother etc.)
     * </p>
   */
  public CodeableConceptDt getRelationship() { 
    if (myRelationship == null) {
      myRelationship = new CodeableConceptDt();
    }
    return myRelationship;
  }
View Full Code Here

     * The actual condition specified. Could be a coded condition (like MI or Diabetes) or a less specific string like 'cancer' depending on how much is known about the condition and the capabilities of the creating system
     * </p>
   */
  public CodeableConceptDt getType() { 
    if (myType == null) {
      myType = new CodeableConceptDt();
    }
    return myType;
  }
View Full Code Here

     * Indicates what happened as a result of this condition.  If the condition resulted in death, deceased date is captured on the relation.
     * </p>
   */
  public CodeableConceptDt getOutcome() { 
    if (myOutcome == null) {
      myOutcome = new CodeableConceptDt();
    }
    return myOutcome;
  }
View Full Code Here

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

     * A coded specification of the anatomic site where the medication first entered the body.  E.g. \"left arm\"
     * </p>
   */
  public CodeableConceptDt getSite() { 
    if (mySite == null) {
      mySite = new CodeableConceptDt();
    }
    return mySite;
  }
View Full Code Here

     * A code specifying the route or physiological path of administration of a therapeutic agent into or onto the patient.   E.g. topical, intravenous, etc.
     * </p>
   */
  public CodeableConceptDt getRoute() { 
    if (myRoute == null) {
      myRoute = new CodeableConceptDt();
    }
    return myRoute;
  }
View Full Code Here

     * A coded value indicating the method by which the medication was introduced into or onto the body. Most commonly used for injections.  Examples:  Slow Push; Deep IV.Terminologies used often pre-coordinate this term with the route and or form of administration.
     * </p>
   */
  public CodeableConceptDt getMethod() { 
    if (myMethod == null) {
      myMethod = new CodeableConceptDt();
    }
    return myMethod;
  }
View Full Code Here

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

     * Code for the oral cavity, tooth, quadrant, sextant or arch.
     * </p>
   */
  public CodeableConceptDt getLocation() { 
    if (myLocation == null) {
      myLocation = new CodeableConceptDt();
    }
    return myLocation;
  }
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.