BoundedRangeStatistic.java |
/** * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package javax.management.j2ee.statistics; // $Id: BoundedRangeStatistic.java,v 1.6.6.1 2005/04/05 17:41:15 starksm Exp $ import javax.management.*; import javax.management.j2ee.Management; import javax.ejb.EJBObject; import javax.ejb.EJBHome; import javax.ejb.CreateException; import java.rmi.RemoteException; import java.util.Set; /** * The BoundedRangeStatistic model aggregates the attributes of RangeStatistic and BoundaryStatistic and provides * standard measurements of a range that has fixed limits. * * @author thomas.diesler@jboss.org */ public interface BoundedRangeStatistic extends BoundaryStatistic, RangeStatistic { }
BoundedRangeStatistic.java |