| CountStatistic.java |
/**
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package javax.management.j2ee.statistics;
// $Id: CountStatistic.java,v 1.6.6.1 2005/04/05 17:41:15 starksm Exp $
/**
* Specifies standard count measurements.
*
* @author thomas.diesler@jboss.org
*/
public interface CountStatistic extends Statistic
{
/**
* The count since the last reset.
*/
public long getCount();
}
| CountStatistic.java |