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

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


     * Indicates a purpose for which the contact can be reached
     * </p>
   */
  public CodeableConceptDt getPurpose() { 
    if (myPurpose == null) {
      myPurpose = new CodeableConceptDt();
    }
    return myPurpose;
  }
View Full Code Here


     * Coded indication of the cause for the event - indicates  a reason for the occurance of the event that is a focus of this message
     * </p>
   */
  public CodeableConceptDt getReason() { 
    if (myReason == null) {
      myReason = new CodeableConceptDt();
    }
    return myReason;
  }
View Full Code Here

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

     * The reason that the activity was taking place
     * </p>
   */
  public CodeableConceptDt getReason() { 
    if (myReason == null) {
      myReason = new CodeableConceptDt();
    }
    return myReason;
  }
View Full Code Here

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

     * Specifies the particular kind of composition (e.g. History and Physical, Discharge Summary, Progress Note). This usually equates to the purpose of making the composition
     * </p>
   */
  public CodeableConceptDt getType() { 
    if (myType == null) {
      myType = new CodeableConceptDt();
    }
    return myType;
  }
View Full Code Here

     * A categorization for the type of the composition. This may be implied by or derived from the code specified in the Composition Type
     * </p>
   */
  public CodeableConceptDt getClassElement() { 
    if (myClassElement == null) {
      myClassElement = new CodeableConceptDt();
    }
    return myClassElement;
  }
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 addCode() {
    CodeableConceptDt newType = new CodeableConceptDt();
    getCode().add(newType);
    return newType;
  }
View Full Code Here

     * A code identifying the kind of content contained within the section
     * </p>
   */
  public CodeableConceptDt getCode() { 
    if (myCode == null) {
      myCode = new CodeableConceptDt();
    }
    return myCode;
  }
View Full Code Here

     * Indicates the type of dispensing event that is performed. Examples include: Trial Fill, Completion of Trial, Partial Fill, Emergency Fill, Samples, etc.
     * </p>
   */
  public CodeableConceptDt getType() { 
    if (myType == null) {
      myType = new CodeableConceptDt();
    }
    return myType;
  }
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.