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

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


     * The code specifying the level of confidentiality of the Composition
     * </p>
   */
  public CodingDt getConfidentiality() { 
    if (myConfidentiality == null) {
      myConfidentiality = new CodingDt();
    }
    return myConfidentiality;
  }
View Full Code Here


    }
    return builder.toString();
  }

  public CodingDt getValueAsCoding() {
    return new CodingDt(mySystem, myValue);
  }
View Full Code Here

     * <b>Definition:</b>
     * A set of terms from external terminologies that may be used to assist with indexing and searching of templates.
     * </p>
   */
  public CodingDt addCode() {
    CodingDt newType = new CodingDt();
    getCode().add(newType);
    return newType;
  }
View Full Code Here

     * Type of media involved. Used when the event is about exporting/importing onto media
     * </p>
   */
  public CodingDt getMedia() { 
    if (myMedia == null) {
      myMedia = new CodingDt();
    }
    return myMedia;
  }
View Full Code Here

     * <b>Definition:</b>
     * Code specifying the type of source where event originated
     * </p>
   */
  public CodingDt addType() {
    CodingDt newType = new CodingDt();
    getType().add(newType);
    return newType;
  }
View Full Code Here

     * <b>Definition:</b>
     * Type of procedure performed
     * </p>
   */
  public CodingDt addProcedure() {
    CodingDt newType = new CodingDt();
    getProcedure().add(newType);
    return newType;
  }
View Full Code Here

     * Body part examined. See  DICOM Part 16 Annex L for the mapping from DICOM to Snomed
     * </p>
   */
  public CodingDt getBodySite() { 
    if (myBodySite == null) {
      myBodySite = new CodingDt();
    }
    return myBodySite;
  }
View Full Code Here

     * The type of coverage: social program, medical plan, accident coverage (workers compensation, auto), group health.
     * </p>
   */
  public CodingDt getType() { 
    if (myType == null) {
      myType = new CodingDt();
    }
    return myType;
  }
View Full Code Here

     * Gender.
     * </p>
   */
  public CodingDt getGender() { 
    if (myGender == null) {
      myGender = new CodingDt();
    }
    return myGender;
  }
View Full Code Here

     * The type of coverage: social program, medical plan, accident coverage (workers compensation, auto), group health.
     * </p>
   */
  public CodingDt getType() { 
    if (myType == null) {
      myType = new CodingDt();
    }
    return myType;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.dstu.composite.CodingDt

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.