390391392393394395396397
* <b>Definition:</b> * How long each repetition should last * </p> */ public Repeat setDuration( java.math.BigDecimal theValue) { myDuration = new DecimalDt(theValue); return this; }
403404405406407408409410
* <b>Definition:</b> * How long each repetition should last * </p> */ public Repeat setDuration( long theValue) { myDuration = new DecimalDt(theValue); return this; }
213214215216217218219220221
* The length of time between sampling times, measured in milliseconds * </p> */ public DecimalDt getPeriod() { if (myPeriod == null) { myPeriod = new DecimalDt(); } return myPeriod; }
240241242243244245246247
* <b>Definition:</b> * The length of time between sampling times, measured in milliseconds * </p> */ public SampledDataDt setPeriod( double theValue) { myPeriod = new DecimalDt(theValue); return this; }
253254255256257258259260
* <b>Definition:</b> * The length of time between sampling times, measured in milliseconds * </p> */ public SampledDataDt setPeriod( java.math.BigDecimal theValue) { myPeriod = new DecimalDt(theValue); return this; }
266267268269270271272273
* <b>Definition:</b> * The length of time between sampling times, measured in milliseconds * </p> */ public SampledDataDt setPeriod( long theValue) { myPeriod = new DecimalDt(theValue); return this; }
283284285286287288289290291
* A correction factor that is applied to the sampled data points before they are added to the origin * </p> */ public DecimalDt getFactor() { if (myFactor == null) { myFactor = new DecimalDt(); } return myFactor; }
310311312313314315316317
* <b>Definition:</b> * A correction factor that is applied to the sampled data points before they are added to the origin * </p> */ public SampledDataDt setFactor( double theValue) { myFactor = new DecimalDt(theValue); return this; }
323324325326327328329330
* <b>Definition:</b> * A correction factor that is applied to the sampled data points before they are added to the origin * </p> */ public SampledDataDt setFactor( java.math.BigDecimal theValue) { myFactor = new DecimalDt(theValue); return this; }
336337338339340341342343
* <b>Definition:</b> * A correction factor that is applied to the sampled data points before they are added to the origin * </p> */ public SampledDataDt setFactor( long theValue) { myFactor = new DecimalDt(theValue); return this; }