361362363364365366367368
* <b>Definition:</b> * * </p> */ public Order setDate( Date theDate, TemporalPrecisionEnum thePrecision) { myDate = new DateTimeDt(theDate, thePrecision); return this; }
374375376377378379380381
* <b>Definition:</b> * * </p> */ public Order setDateWithSecondsPrecision( Date theDate) { myDate = new DateTimeDt(theDate); return this; }
473474475476477478479480481
* Date vaccine administered or was to be administered * </p> */ public DateTimeDt getDate() { if (myDate == null) { myDate = new DateTimeDt(); } return myDate; }
319320321322323324325326327
* Date and Time the study took place * </p> */ public DateTimeDt getDateTime() { if (myDateTime == null) { myDateTime = new DateTimeDt(); } return myDateTime; }
346347348349350351352353
* <b>Definition:</b> * Date and Time the study took place * </p> */ public ImagingStudy setDateTime( Date theDate, TemporalPrecisionEnum thePrecision) { myDateTime = new DateTimeDt(theDate, thePrecision); return this; }
359360361362363364365366
* <b>Definition:</b> * Date and Time the study took place * </p> */ public ImagingStudy setDateTimeWithSecondsPrecision( Date theDate) { myDateTime = new DateTimeDt(theDate); return this; }
156115621563156415651566156715681569
* * </p> */ public DateTimeDt getDateTime() { if (myDateTime == null) { myDateTime = new DateTimeDt(); } return myDateTime; }
15881589159015911592159315941595
* <b>Definition:</b> * * </p> */ public Series setDateTime( Date theDate, TemporalPrecisionEnum thePrecision) { myDateTime = new DateTimeDt(theDate, thePrecision); return this; }
16011602160316041605160616071608
* <b>Definition:</b> * * </p> */ public Series setDateTimeWithSecondsPrecision( Date theDate) { myDateTime = new DateTimeDt(theDate); return this; }
580581582583584585586587588
* * </p> */ public DateTimeDt getAuthorDate() { if (myAuthorDate == null) { myAuthorDate = new DateTimeDt(); } return myAuthorDate; }