01: /* 02: * Copyright (c) 2003-2006 Terracotta, Inc. All rights reserved. 03: */ 04: package com.tc.stats.statistics; 05: 06: public interface CountStatistic extends Statistic { 07: 08: long getCount(); 09: 10: }