Package ca.uhn.fhir.model.primitive

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


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


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

     * The date and/or time that this version of the report was released from the source diagnostic service
     * </p>
   */
  public DateTimeDt getIssued() { 
    if (myIssued == null) {
      myIssued = new DateTimeDt();
    }
    return myIssued;
  }
View Full Code Here

     * <b>Definition:</b>
     * The date and/or time that this version of the report was released from the source diagnostic service
     * </p>
   */
  public DiagnosticReport setIssued( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myIssued = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The date and/or time that this version of the report was released from the source diagnostic service
     * </p>
   */
  public DiagnosticReport setIssuedWithSecondsPrecision( Date theDate) {
    myIssued = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

     * The date and/or time that this version of the questionnaire was authored
     * </p>
   */
  public DateTimeDt getAuthored() { 
    if (myAuthored == null) {
      myAuthored = new DateTimeDt();
    }
    return myAuthored;
  }
View Full Code Here

     * <b>Definition:</b>
     * The date and/or time that this version of the questionnaire was authored
     * </p>
   */
  public Questionnaire setAuthored( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myAuthored = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The date and/or time that this version of the questionnaire was authored
     * </p>
   */
  public Questionnaire setAuthoredWithSecondsPrecision( Date theDate) {
    myAuthored = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

     * The date that the concept map 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 concept map status was last changed
     * </p>
   */
  public ConceptMap 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.