Package ca.uhn.fhir.model.primitive

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


     * The time when the dispensed product was packaged and reviewed.
     * </p>
   */
  public DateTimeDt getWhenPrepared() { 
    if (myWhenPrepared == null) {
      myWhenPrepared = new DateTimeDt();
    }
    return myWhenPrepared;
  }
View Full Code Here


     * <b>Definition:</b>
     * The time when the dispensed product was packaged and reviewed.
     * </p>
   */
  public Dispense setWhenPrepared( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myWhenPrepared = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The time when the dispensed product was packaged and reviewed.
     * </p>
   */
  public Dispense setWhenPreparedWithSecondsPrecision( Date theDate) {
    myWhenPrepared = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

     * The time the dispensed product was provided to the patient or their representative.
     * </p>
   */
  public DateTimeDt getWhenHandedOver() { 
    if (myWhenHandedOver == null) {
      myWhenHandedOver = new DateTimeDt();
    }
    return myWhenHandedOver;
  }
View Full Code Here

     * <b>Definition:</b>
     * The time the dispensed product was provided to the patient or their representative.
     * </p>
   */
  public Dispense setWhenHandedOver( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myWhenHandedOver = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The time the dispensed product was provided to the patient or their representative.
     * </p>
   */
  public Dispense setWhenHandedOverWithSecondsPrecision( Date theDate) {
    myWhenHandedOver = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

     * When the document was created
     * </p>
   */
  public DateTimeDt getCreated() { 
    if (myCreated == null) {
      myCreated = new DateTimeDt();
    }
    return myCreated;
  }
View Full Code Here

     * <b>Definition:</b>
     * When the document was created
     * </p>
   */
  public DocumentReference setCreated( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myCreated = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * When the document was created
     * </p>
   */
  public DocumentReference setCreatedWithSecondsPrecision( Date theDate) {
    myCreated = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

     * The date that the list was prepared
     * </p>
   */
  public DateTimeDt getDate() { 
    if (myDate == null) {
      myDate = new DateTimeDt();
    }
    return myDate;
  }
View Full Code Here

TOP

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

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.