200201202203204205206207208
* Date when result of the analysis is updated * </p> */ public DateDt getDate() { if (myDate == null) { myDate = new DateDt(); } return myDate; }
227228229230231232233234
* <b>Definition:</b> * Date when result of the analysis is updated * </p> */ public SequencingAnalysis setDate( Date theDate, TemporalPrecisionEnum thePrecision) { myDate = new DateDt(theDate, thePrecision); return this; }
240241242243244245246247
* <b>Definition:</b> * Date when result of the analysis is updated * </p> */ public SequencingAnalysis setDateWithDayPrecision( Date theDate) { myDate = new DateDt(theDate); return this; }
324325326327328329330331332
* Date when the result of the lab is uploaded * </p> */ public DateDt getDate() { if (myDate == null) { myDate = new DateDt(); } return myDate; }
351352353354355356357358
* <b>Definition:</b> * Date when the result of the lab is uploaded * </p> */ public SequencingLab setDate( Date theDate, TemporalPrecisionEnum thePrecision) { myDate = new DateDt(theDate, thePrecision); return this; }
364365366367368369370371
* <b>Definition:</b> * Date when the result of the lab is uploaded * </p> */ public SequencingLab setDateWithDayPrecision( Date theDate) { myDate = new DateDt(theDate); return this; }
223224225226227228229230231
250251252253254255256257
* <b>Definition:</b> * Date when result of the analysis is updated * </p> */ public GeneticAnalysis setDate( Date theDate, TemporalPrecisionEnum thePrecision) { myDate = new DateDt(theDate, thePrecision); return this; }
263264265266267268269270
* <b>Definition:</b> * Date when result of the analysis is updated * </p> */ public GeneticAnalysis setDateWithDayPrecision( Date theDate) { myDate = new DateDt(theDate); return this; }
774775776777778779780781782
* The date of birth of the PolicyHolder * </p> */ public DateDt getBirthdate() { if (myBirthdate == null) { myBirthdate = new DateDt(); } return myBirthdate; }