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

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


     * Anatomical location from which the specimen should be collected (if subject is a patient). This element is not used for environmental specimens.
     * </p>
   */
  public CodeableConceptDt getSourceSite() { 
    if (mySourceSite == null) {
      mySourceSite = new CodeableConceptDt();
    }
    return mySourceSite;
  }
View Full Code Here


     * The type of container associated with the specimen (e.g. slide, aliquot, etc)
     * </p>
   */
  public CodeableConceptDt getType() { 
    if (myType == null) {
      myType = new CodeableConceptDt();
    }
    return myType;
  }
View Full Code Here

     * The specific procedure that is performed. Use text if the exact nature of the procedure can't be coded
     * </p>
   */
  public CodeableConceptDt getType() { 
    if (myType == null) {
      myType = new CodeableConceptDt();
    }
    return myType;
  }
View Full Code Here

     * <b>Definition:</b>
     * Detailed and structured anatomical location information. Multiple locations are allowed - e.g. multiple punch biopsies of a lesion
     * </p>
   */
  public CodeableConceptDt addBodySite() {
    CodeableConceptDt newType = new CodeableConceptDt();
    getBodySite().add(newType);
    return newType;
  }
View Full Code Here

     * <b>Definition:</b>
     * The reason why the procedure was performed. This may be due to a Condition, may be coded entity of some type, or may simply be present as text
     * </p>
   */
  public CodeableConceptDt addIndication() {
    CodeableConceptDt newType = new CodeableConceptDt();
    getIndication().add(newType);
    return newType;
  }
View Full Code Here

     * <b>Definition:</b>
     * A language the practitioner is able to use in patient communication
     * </p>
   */
  public CodeableConceptDt addCommunication() {
    CodeableConceptDt newType = new CodeableConceptDt();
    getCommunication().add(newType);
    return newType;
  }
View Full Code Here

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

     * Identifies the 'type' of resource - equivalent to the resource name for other resources.
     * </p>
   */
  public CodeableConceptDt getCode() { 
    if (myCode == null) {
      myCode = new CodeableConceptDt();
    }
    return myCode;
  }
View Full Code Here

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

     * Identifier for a family of the event
     * </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.