Package ca.uhn.fhir.model.primitive

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


     *
     * </p>
   */
  public CodeDt getCode() { 
    if (myCode == null) {
      myCode = new CodeDt();
    }
    return myCode;
  }
View Full Code Here


     * <b>Definition:</b>
     *
     * </p>
   */
  public Concept setCode( String theCode) {
    myCode = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     *
     * </p>
   */
  public CodeDt getCode() { 
    if (myCode == null) {
      myCode = new CodeDt();
    }
    return myCode;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public ConceptDependsOn setCode( String theCode) {
    myCode = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     *
     * </p>
   */
  public CodeDt getCode() { 
    if (myCode == null) {
      myCode = new CodeDt();
    }
    return myCode;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public ConceptMap2 setCode( String theCode) {
    myCode = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Source of the sample
     * </p>
   */
  public CodeDt getGenomicSource() { 
    if (myGenomicSource == null) {
      myGenomicSource = new CodeDt();
    }
    return myGenomicSource;
  }
View Full Code Here

     * <b>Definition:</b>
     * Source of the sample
     * </p>
   */
  public GVFMeta setGenomicSource( String theCode) {
    myGenomicSource = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Class of the sequencing platform
     * </p>
   */
  public CodeDt getClassElement() { 
    if (myClassElement == null) {
      myClassElement = new CodeDt();
    }
    return myClassElement;
  }
View Full Code Here

     * <b>Definition:</b>
     * Class of the sequencing platform
     * </p>
   */
  public Platform setClassElement( String theCode) {
    myClassElement = 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.