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

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


     * A code indicating the type of error, warning or information message.
     * </p>
   */
  public CodingDt getType() { 
    if (myType == null) {
      myType = new CodingDt();
    }
    return myType;
  }
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

     * <b>Definition:</b>
     * Selections made by the user from the list of options
     * </p>
   */
  public CodingDt addChoice() {
    CodingDt newType = new CodingDt();
    getChoice().add(newType);
    return newType;
  }
View Full Code Here

     * The role that the participant played
     * </p>
   */
  public CodingDt getRole() { 
    if (myRole == null) {
      myRole = new CodingDt();
    }
    return myRole;
  }
View Full Code Here

     * The type of the participant
     * </p>
   */
  public CodingDt getType() { 
    if (myType == null) {
      myType = new CodingDt();
    }
    return myType;
  }
View Full Code Here

     * The type of the entity. If the entity is a resource, then this is a resource type
     * </p>
   */
  public CodingDt getType() { 
    if (myType == null) {
      myType = new CodingDt();
    }
    return myType;
  }
View Full Code Here

     * A coded identifier of a supported messaging event
     * </p>
   */
  public CodingDt getCode() { 
    if (myCode == null) {
      myCode = new CodingDt();
    }
    return myCode;
  }
View Full Code Here

     * <b>Definition:</b>
     * A list of the messaging transport protocol(s) identifiers, supported by this endpoint
     * </p>
   */
  public CodingDt addProtocol() {
    CodingDt newType = new CodingDt();
    getProtocol().add(newType);
    return newType;
  }
View Full Code Here

     * 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

     * 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

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.