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

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


     * A code specifying the route or physiological path of administration of a therapeutic agent into or onto a subject.
     * </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 is 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

     * A code signifying whether a different drug was dispensed from what was prescribed.
     * </p>
   */
  public CodeableConceptDt getType() { 
    if (myType == null) {
      myType = new CodeableConceptDt();
    }
    return myType;
  }
View Full Code Here

     * <b>Definition:</b>
     * Indicates the reason for the substitution of (or lack of substitution) from what was prescribed.
     * </p>
   */
  public CodeableConceptDt addReason() {
    CodeableConceptDt newType = new CodeableConceptDt();
    getReason().add(newType);
    return newType;
  }
View Full Code Here

     * Provides a specific type of resource the group includes.  E.g. \"cow\", \"syringe\", etc.
     * </p>
   */
  public CodeableConceptDt getCode() { 
    if (myCode == null) {
      myCode = new CodeableConceptDt();
    }
    return myCode;
  }
View Full Code Here

     * A code that identifies the kind of trait being asserted
     * </p>
   */
  public CodeableConceptDt getCode() { 
    if (myCode == null) {
      myCode = new CodeableConceptDt();
    }
    return myCode;
  }
View Full Code Here

     * Details of the type of the media - usually, how it was acquired (what type of device). If images sourced from a DICOM system, are wrapped in a Media resource, then this is the modality
     * </p>
   */
  public CodeableConceptDt getSubtype() { 
    if (mySubtype == null) {
      mySubtype = new CodeableConceptDt();
    }
    return mySubtype;
  }
View Full Code Here

     * The name of the imaging view e.g Lateral or Antero-posterior (AP).
     * </p>
   */
  public CodeableConceptDt getView() { 
    if (myView == null) {
      myView = new CodeableConceptDt();
    }
    return myView;
  }
View Full Code Here

     * Organism that the sample belong s to
     * </p>
   */
  public CodeableConceptDt getOrganism() { 
    if (myOrganism == null) {
      myOrganism = new CodeableConceptDt();
    }
    return myOrganism;
  }
View Full Code Here

     * Source of the specimen
     * </p>
   */
  public CodeableConceptDt getSource() { 
    if (mySource == null) {
      mySource = new CodeableConceptDt();
    }
    return mySource;
  }
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.