426427428429430431432433
* <b>Definition:</b> * The date that the list was prepared * </p> */ public ListResource setDate( Date theDate, TemporalPrecisionEnum thePrecision) { myDate = new DateTimeDt(theDate, thePrecision); return this; }
439440441442443444445446
* <b>Definition:</b> * The date that the list was prepared * </p> */ public ListResource setDateWithSecondsPrecision( Date theDate) { myDate = new DateTimeDt(theDate); return this; }
795796797798799800801802803
* When this item was added to the list * </p> */ public DateTimeDt getDate() { if (myDate == null) { myDate = new DateTimeDt(); } return myDate; }
822823824825826827828829
* <b>Definition:</b> * When this item was added to the list * </p> */ public Entry setDate( Date theDate, TemporalPrecisionEnum thePrecision) { myDate = new DateTimeDt(theDate, thePrecision); return this; }
835836837838839840841842
* <b>Definition:</b> * When this item was added to the list * </p> */ public Entry setDateWithSecondsPrecision( Date theDate) { myDate = new DateTimeDt(theDate); return this; }
761762763764765766767768769
* The date when the conformance statement was published * </p> */ public DateTimeDt getDate() { if (myDate == null) { myDate = new DateTimeDt(); } return myDate; }
788789790791792793794795
* <b>Definition:</b> * The date when the conformance statement was published * </p> */ public Conformance setDate( Date theDate, TemporalPrecisionEnum thePrecision) { myDate = new DateTimeDt(theDate, thePrecision); return this; }
801802803804805806807808
* <b>Definition:</b> * The date when the conformance statement was published * </p> */ public Conformance setDateWithSecondsPrecision( Date theDate) { myDate = new DateTimeDt(theDate); return this; }
444445446447448449450451452
* Time when specimen was received for processing or testing * </p> */ public DateTimeDt getReceivedTime() { if (myReceivedTime == null) { myReceivedTime = new DateTimeDt(); } return myReceivedTime; }
471472473474475476477478
* <b>Definition:</b> * Time when specimen was received for processing or testing * </p> */ public Specimen setReceivedTime( Date theDate, TemporalPrecisionEnum thePrecision) { myReceivedTime = new DateTimeDt(theDate, thePrecision); return this; }