Package ca.uhn.fhir.model.primitive

Examples of ca.uhn.fhir.model.primitive.CodeDt


     * <b>Definition:</b>
     * The human language of the content. The value can be any valid value according to BCP 47
     * </p>
   */
  public AttachmentDt setLanguage( String theCode) {
    myLanguage = new CodeDt(theCode);
    return this;
  }
View Full Code Here


     * Each of the participants has their own participation status which indicates their involvement in the process, however this status indicates the shared status
     * </p>
   */
  public CodeDt getStatus() { 
    if (myStatus == null) {
      myStatus = new CodeDt();
    }
    return myStatus;
  }
View Full Code Here

     * <b>Definition:</b>
     * Each of the participants has their own participation status which indicates their involvement in the process, however this status indicates the shared status
     * </p>
   */
  public Appointment setStatus( String theCode) {
    myStatus = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Is this participant required to be present at the meeting. This covers a use-case where 2 doctors need to meet to discuss the results for a specific patient, and the patient is not required to be present.
     * </p>
   */
  public CodeDt getRequired() { 
    if (myRequired == null) {
      myRequired = new CodeDt();
    }
    return myRequired;
  }
View Full Code Here

     * <b>Definition:</b>
     * Is this participant required to be present at the meeting. This covers a use-case where 2 doctors need to meet to discuss the results for a specific patient, and the patient is not required to be present.
     * </p>
   */
  public Participant setRequired( String theCode) {
    myRequired = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Participation status of the Patient
     * </p>
   */
  public CodeDt getStatus() { 
    if (myStatus == null) {
      myStatus = new CodeDt();
    }
    return myStatus;
  }
View Full Code Here

     * <b>Definition:</b>
     * Participation status of the Patient
     * </p>
   */
  public Participant setStatus( String theCode) {
    myStatus = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Participation status of the Patient
     * </p>
   */
  public CodeDt getParticipantStatus() { 
    if (myParticipantStatus == null) {
      myParticipantStatus = new CodeDt();
    }
    return myParticipantStatus;
  }
View Full Code Here

     * <b>Definition:</b>
     * Participation status of the Patient
     * </p>
   */
  public AppointmentResponse setParticipantStatus( String theCode) {
    myParticipantStatus = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Effect of the variant
     * </p>
   */
  public CodeDt getSequenceVariant() { 
    if (mySequenceVariant == null) {
      mySequenceVariant = new CodeDt();
    }
    return mySequenceVariant;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.primitive.CodeDt

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.