394395396397398399400401402
* * </p> */ public InstantDt getStart() { if (myStart == null) { myStart = new InstantDt(); } return myStart; }
421422423424425426427428
* <b>Definition:</b> * * </p> */ public Slot setStartWithMillisPrecision( Date theDate) { myStart = new InstantDt(theDate); return this; }
434435436437438439440441
* <b>Definition:</b> * * </p> */ public Slot setStart( Date theDate, TemporalPrecisionEnum thePrecision) { myStart = new InstantDt(theDate, thePrecision); return this; }
451452453454455456457458459
* * </p> */ public InstantDt getEnd() { if (myEnd == null) { myEnd = new InstantDt(); } return myEnd; }
478479480481482483484485
* <b>Definition:</b> * * </p> */ public Slot setEndWithMillisPrecision( Date theDate) { myEnd = new InstantDt(theDate); return this; }
491492493494495496497498
* <b>Definition:</b> * * </p> */ public Slot setEnd( Date theDate, TemporalPrecisionEnum thePrecision) { myEnd = new InstantDt(theDate, thePrecision); return this; }
546547548549550551552553554
* * </p> */ public InstantDt getIssued() { if (myIssued == null) { myIssued = new InstantDt(); } return myIssued; }
573574575576577578579580
* <b>Definition:</b> * * </p> */ public Observation setIssuedWithMillisPrecision( Date theDate) { myIssued = new InstantDt(theDate); return this; }
586587588589590591592593
* <b>Definition:</b> * * </p> */ public Observation setIssued( Date theDate, TemporalPrecisionEnum thePrecision) { myIssued = new InstantDt(theDate, thePrecision); return this; }
107110721073107410751076107710781079
* <b>Definition:</b> * * </p> */ public InstantDt addInstantErr() { InstantDt newType = new InstantDt(); getInstantErr().add(newType); return newType; }