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

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


     * <b>Definition:</b>
     * Identifier for the category of event
     * </p>
   */
  public CodeableConceptDt addSubtype() {
    CodeableConceptDt newType = new CodeableConceptDt();
    getSubtype().add(newType);
    return newType;
  }
View Full Code Here


     * <b>Definition:</b>
     * Specification of the role(s) the user plays when performing the event. Usually the codes used in this element are local codes defined by the role-based access control security system used in the local context
     * </p>
   */
  public CodeableConceptDt addRole() {
    CodeableConceptDt newType = new CodeableConceptDt();
    getRole().add(newType);
    return newType;
  }
View Full Code Here

     * <b>Definition:</b>
     * Refusal or exemption reasons
     * </p>
   */
  public CodeableConceptDt addRefusalReason() {
    CodeableConceptDt newType = new CodeableConceptDt();
    getRefusalReason().add(newType);
    return newType;
  }
View Full Code Here

     * The targeted disease
     * </p>
   */
  public CodeableConceptDt getDoseTarget() { 
    if (myDoseTarget == null) {
      myDoseTarget = new CodeableConceptDt();
    }
    return myDoseTarget;
  }
View Full Code Here

     * Indicates if the immunization event should \"count\" against  the protocol.
     * </p>
   */
  public CodeableConceptDt getDoseStatus() { 
    if (myDoseStatus == null) {
      myDoseStatus = new CodeableConceptDt();
    }
    return myDoseStatus;
  }
View Full Code Here

     * Provides an explanation as to why a immunization event should or should not count against the protocol.
     * </p>
   */
  public CodeableConceptDt getDoseStatusReason() { 
    if (myDoseStatusReason == null) {
      myDoseStatusReason = new CodeableConceptDt();
    }
    return myDoseStatusReason;
  }
View Full Code Here

     * Allows an alert to be divided into different categories like clinical, administrative etc.
     * </p>
   */
  public CodeableConceptDt getCategory() { 
    if (myCategory == null) {
      myCategory = new CodeableConceptDt();
    }
    return myCategory;
  }
View Full Code Here

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

     * Identification of the condition, problem or diagnosis.
     * </p>
   */
  public CodeableConceptDt getCode() { 
    if (myCode == null) {
      myCode = new CodeableConceptDt();
    }
    return myCode;
  }
View Full Code Here

     * A category assigned to the condition. E.g. complaint | symptom | finding | diagnosis
     * </p>
   */
  public CodeableConceptDt getCategory() { 
    if (myCategory == null) {
      myCategory = new CodeableConceptDt();
    }
    return myCategory;
  }
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.