Package ca.uhn.fhir.model.primitive

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


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


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

     * The composition editing time, when the composition was last logically changed by the author
     * </p>
   */
  public DateTimeDt getDate() { 
    if (myDate == null) {
      myDate = new DateTimeDt();
    }
    return myDate;
  }
View Full Code Here

     * <b>Definition:</b>
     * The composition editing time, when the composition was last logically changed by the author
     * </p>
   */
  public Composition setDate( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myDate = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The composition editing time, when the composition was last logically changed by the author
     * </p>
   */
  public Composition setDateWithSecondsPrecision( Date theDate) {
    myDate = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

     * When composition was attested by the party
     * </p>
   */
  public DateTimeDt getTime() { 
    if (myTime == null) {
      myTime = new DateTimeDt();
    }
    return myTime;
  }
View Full Code Here

     * <b>Definition:</b>
     * When composition was attested by the party
     * </p>
   */
  public Attester setTime( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myTime = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * When composition was attested by the party
     * </p>
   */
  public Attester setTimeWithSecondsPrecision( Date theDate) {
    myTime = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * The date that the value set status was last changed
     * </p>
   */
  public ValueSet setDate( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myDate = new DateTimeDt(theDate, thePrecision);
    return this;
  }
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.