Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * Width of the image in pixels (photo/video)
     * </p>
   */
  public Media setWidth( int theInteger) {
    myWidth = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here


     * The number of frames in a photo. This is used with a multi-page fax, or an imaging acquisition context that takes multiple slices in a single image, or an animated gif. If there is more than one frame, this SHALL have a value in order to alert interface software that a multi-frame capable rendering widget is required
     * </p>
   */
  public IntegerDt getFrames() { 
    if (myFrames == null) {
      myFrames = new IntegerDt();
    }
    return myFrames;
  }
View Full Code Here

     * <b>Definition:</b>
     * The number of frames in a photo. This is used with a multi-page fax, or an imaging acquisition context that takes multiple slices in a single image, or an animated gif. If there is more than one frame, this SHALL have a value in order to alert interface software that a multi-frame capable rendering widget is required
     * </p>
   */
  public Media setFrames( int theInteger) {
    myFrames = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * The length of the recording in seconds - for audio and video
     * </p>
   */
  public IntegerDt getLength() { 
    if (myLength == null) {
      myLength = new IntegerDt();
    }
    return myLength;
  }
View Full Code Here

     * <b>Definition:</b>
     * The length of the recording in seconds - for audio and video
     * </p>
   */
  public Media setLength( int theInteger) {
    myLength = 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 SampleGeneCoordinate 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 SampleGeneCoordinate setEnd( int theInteger) {
    myEnd = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     *
     * </p>
   */
  public IntegerDt getTotal() { 
    if (myTotal == null) {
      myTotal = new IntegerDt();
    }
    return myTotal;
  }
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.