Package ca.uhn.fhir.model.primitive

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


     * Valid version of the GVF file
     * </p>
   */
  public CodeDt getGvfVersion() { 
    if (myGvfVersion == null) {
      myGvfVersion = new CodeDt();
    }
    return myGvfVersion;
  }
View Full Code Here


     * <b>Definition:</b>
     * Valid version of the GVF file
     * </p>
   */
  public GVFMeta setGvfVersion( String theCode) {
    myGvfVersion = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Code for population which the individual can be categorized into
     * </p>
   */
  public CodeDt getPopulation() { 
    if (myPopulation == null) {
      myPopulation = new CodeDt();
    }
    return myPopulation;
  }
View Full Code Here

     * <b>Definition:</b>
     * Code for population which the individual can be categorized into
     * </p>
   */
  public GVFMeta setPopulation( String theCode) {
    myPopulation = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Scope of the sequencing
     * </p>
   */
  public CodeDt getSequencingScope() { 
    if (mySequencingScope == null) {
      mySequencingScope = new CodeDt();
    }
    return mySequencingScope;
  }
View Full Code Here

     * <b>Definition:</b>
     * Scope of the sequencing
     * </p>
   */
  public GVFMeta setSequencingScope( String theCode) {
    mySequencingScope = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Capture method used in the sequencing
     * </p>
   */
  public CodeDt getCaptureMethod() { 
    if (myCaptureMethod == null) {
      myCaptureMethod = new CodeDt();
    }
    return myCaptureMethod;
  }
View Full Code Here

     * <b>Definition:</b>
     * Capture method used in the sequencing
     * </p>
   */
  public GVFMeta setCaptureMethod( String theCode) {
    myCaptureMethod = new CodeDt(theCode);
    return this;
  }
View Full Code Here

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

     * <b>Definition:</b>
     *
     * </p>
   */
  public Slot setFreeBusyType( String theCode) {
    myFreeBusyType = 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.