Package ca.uhn.fhir.model.primitive

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


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


     * <b>Definition:</b>
     * Name of sequencing system
     * </p>
   */
  public System setName( String theCode) {
    myName = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Whether the specimen is from germline or somatic cells of the patient
     * </p>
   */
  public CodeDt getType() { 
    if (myType == null) {
      myType = new CodeDt();
    }
    return myType;
  }
View Full Code Here

     * <b>Definition:</b>
     * Whether the specimen is from germline or somatic cells of the patient
     * </p>
   */
  public Specimen setType( String theCode) {
    myType = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * The primary language in which the source document is written
     * </p>
   */
  public CodeDt getPrimaryLanguage() { 
    if (myPrimaryLanguage == null) {
      myPrimaryLanguage = new CodeDt();
    }
    return myPrimaryLanguage;
  }
View Full Code Here

     * <b>Definition:</b>
     * The primary language in which the source document is written
     * </p>
   */
  public DocumentReference setPrimaryLanguage( String theCode) {
    myPrimaryLanguage = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * The mime type of the source document
     * </p>
   */
  public CodeDt getMimeType() { 
    if (myMimeType == null) {
      myMimeType = new CodeDt();
    }
    return myMimeType;
  }
View Full Code Here

     * <b>Definition:</b>
     * The mime type of the source document
     * </p>
   */
  public DocumentReference setMimeType( String theCode) {
    myMimeType = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * A list of the formats supported by this implementation
     * </p>
   */
  public CodeDt addFormat() {
    CodeDt newType = new CodeDt();
    getFormat().add(newType);
    return newType;
  }
View Full Code Here

   */
  public Conformance addFormat( String theCode) {
    if (myFormat == null) {
      myFormat = new java.util.ArrayList<CodeDt>();
    }
    myFormat.add(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.