KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > stats > statistics > DoubleStatisticImpl


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.stats.statistics;
5
6 public class DoubleStatisticImpl extends StatisticImpl implements DoubleStatistic {
7
8   private double doubleValue;
9
10   public DoubleStatisticImpl(long lastSampleTime) {
11     super(lastSampleTime);
12   }
13
14   public double getDoubleValue() {
15     return this.doubleValue;
16   }
17
18   public void setDoubleValue(double doubleValue) {
19     this.doubleValue = doubleValue;
20   }
21 }
22
Popular Tags