1 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 |