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