Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * End position of the DNA region of interest
     * </p>
   */
  public DnaRegionAnalysisTestCoverageDnaRegionOfInterest setRegionOfInterestStop( int theInteger) {
    myRegionOfInterestStop = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here


     * Start position
     * </p>
   */
  public IntegerDt getStart() { 
    if (myStart == null) {
      myStart = new IntegerDt();
    }
    return myStart;
  }
View Full Code Here

     * <b>Definition:</b>
     * Start position
     * </p>
   */
  public GeneCoordinate setStart( int theInteger) {
    myStart = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * End position
     * </p>
   */
  public IntegerDt getEnd() { 
    if (myEnd == null) {
      myEnd = new IntegerDt();
    }
    return myEnd;
  }
View Full Code Here

     * <b>Definition:</b>
     * End position
     * </p>
   */
  public GeneCoordinate setEnd( int theInteger) {
    myEnd = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * The size of the source document this reference refers to in bytes
     * </p>
   */
  public IntegerDt getSize() { 
    if (mySize == null) {
      mySize = new IntegerDt();
    }
    return mySize;
  }
View Full Code Here

     * <b>Definition:</b>
     * The size of the source document this reference refers to in bytes
     * </p>
   */
  public DocumentReference setSize( int theInteger) {
    mySize = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * A unique identifier for a dependent under the coverage.
     * </p>
   */
  public IntegerDt getDependent() { 
    if (myDependent == null) {
      myDependent = new IntegerDt();
    }
    return myDependent;
  }
View Full Code Here

     * <b>Definition:</b>
     * A unique identifier for a dependent under the coverage.
     * </p>
   */
  public Coverage setDependent( int theInteger) {
    myDependent = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * An optional counter for a particular instance of the identified coverage which increments upon each renewal.
     * </p>
   */
  public IntegerDt getSequence() { 
    if (mySequence == null) {
      mySequence = new IntegerDt();
    }
    return mySequence;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.primitive.IntegerDt

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.