Examples of DateTimeDt


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

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

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

     * <b>Definition:</b>
     * The date that this version of the profile was published
     * </p>
   */
  public Profile setDate( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myDate = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * The date that this version of the profile was published
     * </p>
   */
  public Profile setDateWithSecondsPrecision( Date theDate) {
    myDate = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

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

     *
     * </p>
   */
  public DateTimeDt getRecordedDate() { 
    if (myRecordedDate == null) {
      myRecordedDate = new DateTimeDt();
    }
    return myRecordedDate;
  }
View Full Code Here

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

     * <b>Definition:</b>
     *
     * </p>
   */
  public AppointmentResponse setRecordedDate( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myRecordedDate = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

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

     * <b>Definition:</b>
     *
     * </p>
   */
  public AppointmentResponse setRecordedDateWithSecondsPrecision( Date theDate) {
    myRecordedDate = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

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

     * When to stop repeating the schedule
     * </p>
   */
  public DateTimeDt getEnd() { 
    if (myEnd == null) {
      myEnd = new DateTimeDt();
    }
    return myEnd;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * When to stop repeating the schedule
     * </p>
   */
  public Repeat setEnd( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myEnd = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * When to stop repeating the schedule
     * </p>
   */
  public Repeat setEndWithSecondsPrecision( Date theDate) {
    myEnd = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

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

     *
     * </p>
   */
  public DateTimeDt getAuthorDate() { 
    if (myAuthorDate == null) {
      myAuthorDate = new DateTimeDt();
    }
    return myAuthorDate;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.