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 TimeStatisticImpl extends StatisticImpl {
07: private long m_count;
08:
09: public TimeStatisticImpl() {
10: this (0L);
11: }
12:
13: public TimeStatisticImpl(long count) {
14: m_count = count;
15: }
16:
17: public void setCount(long count) {
18: m_count = count;
19: }
20:
21: public long getCount() {
22: return m_count;
23: }
24:
25: }
|