Package ca.uhn.fhir.model.primitive

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


     * Name of the reference genome
     * </p>
   */
  public CodeDt getName() { 
    if (myName == null) {
      myName = new CodeDt();
    }
    return myName;
  }
View Full Code Here


     * <b>Definition:</b>
     * Name of the reference genome
     * </p>
   */
  public Genome setName( String theCode) {
    myName = 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

     * A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination)
     * </p>
   */
  public CodeDt getCode() { 
    if (myCode == null) {
      myCode = new CodeDt();
    }
    return myCode;
  }
View Full Code Here

     * <b>Definition:</b>
     * A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination)
     * </p>
   */
  public CodingDt setCode( String theCode) {
    myCode = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Specifies a code or concept to be included or excluded. The list of codes is considered ordered, though the order may not have any particular significance
     * </p>
   */
  public CodeDt addCode() {
    CodeDt newType = new CodeDt();
    getCode().add(newType);
    return newType;
  }
View Full Code Here

   */
  public ComposeInclude addCode( String theCode) {
    if (myCode == null) {
      myCode = new java.util.ArrayList<CodeDt>();
    }
    myCode.add(new CodeDt(theCode));
    return this;
  }
View Full Code Here

     * A code that identifies a property defined in the code system
     * </p>
   */
  public CodeDt getProperty() { 
    if (myProperty == null) {
      myProperty = new CodeDt();
    }
    return myProperty;
  }
View Full Code Here

     * <b>Definition:</b>
     * A code that identifies a property defined in the code system
     * </p>
   */
  public ComposeIncludeFilter setProperty( String theCode) {
    myProperty = new CodeDt(theCode);
    return this;
  }
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.