01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.stats.statistics;
05:
06: public class DoubleStatisticImpl extends StatisticImpl implements
07: DoubleStatistic {
08:
09: private double doubleValue;
10:
11: public DoubleStatisticImpl(long lastSampleTime) {
12: super (lastSampleTime);
13: }
14:
15: public double getDoubleValue() {
16: return this .doubleValue;
17: }
18:
19: public void setDoubleValue(double doubleValue) {
20: this.doubleValue = doubleValue;
21: }
22: }
|