491492493494495496497498499
* Date when the file is updated * </p> */ public DateDt getFileDate() { if (myFileDate == null) { myFileDate = new DateDt(); } return myFileDate; }
518519520521522523524525
* <b>Definition:</b> * Date when the file is updated * </p> */ public GVFMeta setFileDate( Date theDate, TemporalPrecisionEnum thePrecision) { myFileDate = new DateDt(theDate, thePrecision); return this; }
531532533534535536537538
* <b>Definition:</b> * Date when the file is updated * </p> */ public GVFMeta setFileDateWithDayPrecision( Date theDate) { myFileDate = new DateDt(theDate); return this; }
287288289290291292293294295
* Date when result of the analysis is updated * </p> */ public DateDt getDate() { if (myDate == null) { myDate = new DateDt(); } return myDate; }
314315316317318319320321
* <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; }
327328329330331332333334
* <b>Definition:</b> * Date when result of the analysis is updated * </p> */ public GeneticAnalysis setDateWithDayPrecision( Date theDate) { myDate = new DateDt(theDate); return this; }
416417418419420421422423424
* Date when the result of the lab is uploaded * </p> */ public DateDt getDate() { if (myDate == null) { myDate = new DateDt(); } return myDate; }
443444445446447448449450
* <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; }
456457458459460461462463
* <b>Definition:</b> * Date when the result of the lab is uploaded * </p> */ public SequencingLab setDateWithDayPrecision( Date theDate) { myDate = new DateDt(theDate); return this; }
259260261262263264265266267