1 /*2 * Copyright (c) 2003-2006 Terracotta, Inc. All rights reserved.3 */4 package com.tc.stats.statistics;5 6 public interface CountStatistic extends Statistic {7 8 long getCount();9 10 }11