public BoundedRangeStatisticMock(long current, long highWater, long lowWater, long upperBound, long lowerBound, String name, String unit, String desc, long sampleTime, long startTime)Creates a new instance of BoundedRangeStatisticImpl
super(name, unit, desc, startTime, sampleTime);
this.current=current;
this.highWater=highWater;
this.lowWater=lowWater;
this.upperBound=upperBound;
this.lowerBound=lowerBound;
|