331332333334335336337338
* <b>Definition:</b> * Date when result of the microarray is updated * </p> */ public Microarray setDateWithDayPrecision( Date theDate) { myDate = new DateDt(theDate); return this; }
344345346347348349350351
* <b>Definition:</b> * Date when result of the microarray is updated * </p> */ public Microarray setDate( Date theDate, TemporalPrecisionEnum thePrecision) { myDate = new DateDt(theDate, thePrecision); return this; }
107110721073107410751076107710781079
* Date vaccine batch expires * </p> */ public DateDt getExpirationDate() { if (myExpirationDate == null) { myExpirationDate = new DateDt(); } return myExpirationDate; }
10981099110011011102110311041105
* <b>Definition:</b> * Date vaccine batch expires * </p> */ public Immunization setExpirationDateWithDayPrecision( Date theDate) { myExpirationDate = new DateDt(theDate); return this; }
11111112111311141115111611171118
* <b>Definition:</b> * Date vaccine batch expires * </p> */ public Immunization setExpirationDate( Date theDate, TemporalPrecisionEnum thePrecision) { myExpirationDate = new DateDt(theDate, thePrecision); return this; }
399400401402403404405406407
* Identifies when the resource was first created * </p> */ public DateDt getCreated() { if (myCreated == null) { myCreated = new DateDt(); } return myCreated; }
426427428429430431432433
* <b>Definition:</b> * Identifies when the resource was first created * </p> */ public Other setCreatedWithDayPrecision( Date theDate) { myCreated = new DateDt(theDate); return this; }
439440441442443444445446
* <b>Definition:</b> * Identifies when the resource was first created * </p> */ public Other setCreated( Date theDate, TemporalPrecisionEnum thePrecision) { myCreated = new DateDt(theDate, thePrecision); return this; }