520521522523524525526527528
* Date of expiry of this device (if applicable) * </p> */ public DateDt getExpiry() { if (myExpiry == null) { myExpiry = new DateDt(); } return myExpiry; }
547548549550551552553554
* <b>Definition:</b> * Date of expiry of this device (if applicable) * </p> */ public Device setExpiry( Date theDate, TemporalPrecisionEnum thePrecision) { myExpiry = new DateDt(theDate, thePrecision); return this; }
560561562563564565566567
* <b>Definition:</b> * Date of expiry of this device (if applicable) * </p> */ public Device setExpiryWithDayPrecision( Date theDate) { myExpiry = new DateDt(theDate); return this; }
246247248249250251252253254
* Date when result of the microarray is updated * </p> */ public DateDt getDate() { if (myDate == null) { myDate = new DateDt(); } return myDate; }
273274275276277278279280
* <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; }
286287288289290291292293
* <b>Definition:</b> * Date when result of the microarray is updated * </p> */ public Microarray setDateWithDayPrecision( Date theDate) { myDate = new DateDt(theDate); return this; }
444445446447448449450451452
* Date when the file is updated * </p> */ public DateDt getFileDate() { if (myFileDate == null) { myFileDate = new DateDt(); } return myFileDate; }
471472473474475476477478
* <b>Definition:</b> * Date when the file is updated * </p> */ public GVFMeta setFileDate( Date theDate, TemporalPrecisionEnum thePrecision) { myFileDate = new DateDt(theDate, thePrecision); return this; }
484485486487488489490491
* <b>Definition:</b> * Date when the file is updated * </p> */ public GVFMeta setFileDateWithDayPrecision( Date theDate) { myFileDate = new DateDt(theDate); return this; }
491492493494495496497498499