Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * Number of SOP Instances in Study
     * </p>
   */
  public ImagingStudy setNumberOfInstances( int theInteger) {
    myNumberOfInstances = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here


     * The number of this series in the overall sequence
     * </p>
   */
  public IntegerDt getNumber() { 
    if (myNumber == null) {
      myNumber = new IntegerDt();
    }
    return myNumber;
  }
View Full Code Here

     * <b>Definition:</b>
     * The number of this series in the overall sequence
     * </p>
   */
  public Series setNumber( int theInteger) {
    myNumber = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * Sequence that contains attributes from the
     * </p>
   */
  public IntegerDt getNumberOfInstances() { 
    if (myNumberOfInstances == null) {
      myNumberOfInstances = new IntegerDt();
    }
    return myNumberOfInstances;
  }
View Full Code Here

     * <b>Definition:</b>
     * Sequence that contains attributes from the
     * </p>
   */
  public Series setNumberOfInstances( int theInteger) {
    myNumberOfInstances = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * A count of the number of resource instances that are part of the group
     * </p>
   */
  public IntegerDt getQuantity() { 
    if (myQuantity == null) {
      myQuantity = new IntegerDt();
    }
    return myQuantity;
  }
View Full Code Here

     * <b>Definition:</b>
     * A count of the number of resource instances that are part of the group
     * </p>
   */
  public Group setQuantity( int theInteger) {
    myQuantity = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * Height of the image in pixels(photo/video)
     * </p>
   */
  public IntegerDt getHeight() { 
    if (myHeight == null) {
      myHeight = new IntegerDt();
    }
    return myHeight;
  }
View Full Code Here

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

     * Width of the image in pixels (photo/video)
     * </p>
   */
  public IntegerDt getWidth() { 
    if (myWidth == null) {
      myWidth = new IntegerDt();
    }
    return myWidth;
  }
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.