484485486487488489490491
* <b>Definition:</b> * Time when specimen was received for processing or testing * </p> */ public Specimen setReceivedTimeWithSecondsPrecision( Date theDate) { myReceivedTime = new DateTimeDt(theDate); return this; }
548549550551552553554555556
* The date and time of birth for the practitioner * </p> */ public DateTimeDt getBirthDate() { if (myBirthDate == null) { myBirthDate = new DateTimeDt(); } return myBirthDate; }
575576577578579580581582
* <b>Definition:</b> * The date and time of birth for the practitioner * </p> */ public Practitioner setBirthDate( Date theDate, TemporalPrecisionEnum thePrecision) { myBirthDate = new DateTimeDt(theDate, thePrecision); return this; }
588589590591592593594595
* <b>Definition:</b> * The date and time of birth for the practitioner * </p> */ public Practitioner setBirthDateWithSecondsPrecision( Date theDate) { myBirthDate = new DateTimeDt(theDate); return this; }
500501502503504505506507
* <b>Definition:</b> * Date vaccine administered or was to be administered * </p> */ public Immunization setDate( Date theDate, TemporalPrecisionEnum thePrecision) { myDate = new DateTimeDt(theDate, thePrecision); return this; }
513514515516517518519520
* <b>Definition:</b> * Date vaccine administered or was to be administered * </p> */ public Immunization setDateWithSecondsPrecision( Date theDate) { myDate = new DateTimeDt(theDate); return this; }
142514261427142814291430143114321433
* Date of reaction to the immunization * </p> */ public DateTimeDt getDate() { if (myDate == null) { myDate = new DateTimeDt(); } return myDate; }
14521453145414551456145714581459
* <b>Definition:</b> * Date of reaction to the immunization * </p> */ public Reaction setDate( Date theDate, TemporalPrecisionEnum thePrecision) { myDate = new DateTimeDt(theDate, thePrecision); return this; }
14651466146714681469147014711472
* <b>Definition:</b> * Date of reaction to the immunization * </p> */ public Reaction setDateWithSecondsPrecision( Date theDate) { myDate = new DateTimeDt(theDate); return this; }
334335336337338339340341342
* * </p> */ public DateTimeDt getDate() { if (myDate == null) { myDate = new DateTimeDt(); } return myDate; }