Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * Effect of the variant
     * </p>
   */
  public VariantEffect setSequenceVariant( String theCode) {
    mySequenceVariant = new CodeDt(theCode);
    return this;
  }
View Full Code Here


     * Type of the feature being described
     * </p>
   */
  public CodeDt getFeatureType() { 
    if (myFeatureType == null) {
      myFeatureType = new CodeDt();
    }
    return myFeatureType;
  }
View Full Code Here

     * <b>Definition:</b>
     * Type of the feature being described
     * </p>
   */
  public VariantEffect setFeatureType( String theCode) {
    myFeatureType = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Direction of strand
     * </p>
   */
  public CodeDt getStrand() { 
    if (myStrand == null) {
      myStrand = new CodeDt();
    }
    return myStrand;
  }
View Full Code Here

     * <b>Definition:</b>
     * Direction of strand
     * </p>
   */
  public BreakpointDetail setStrand( String theCode) {
    myStrand = new CodeDt(theCode);
    return this;
  }
View Full Code Here

     * Zygosity of the sequences
     * </p>
   */
  public CodeDt getZygosity() { 
    if (myZygosity == null) {
      myZygosity = new CodeDt();
    }
    return myZygosity;
  }
View Full Code Here

     * <b>Definition:</b>
     * Zygosity of the sequences
     * </p>
   */
  public Sample setZygosity( String theCode) {
    myZygosity = new CodeDt(theCode);
    return this;
  }
View Full Code Here

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

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

     * A computer processable form of the units in some unit representation system
     * </p>
   */
  public CodeDt getCode() { 
    if (myCode == null) {
      myCode = new CodeDt();
    }
    return myCode;
  }
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.