1 package javax.management.j2ee;
2
3 /**
4 * Represents a standard measurements of an attribute where its
5 * value range between fixed limits.
6 *
7 * @author <a href="mailto:marc@jboss.org">Marc Fleury</a>
8 * @author <a href="mailto:andreas@jboss.org">Andreas Schaefer</a>
9 * @version $Revision: 1.1 $
10 *
11 * <p><b>Revisions:</b>
12 *
13 * <p><b>200112009 Andreas Schaefer:</b>
14 * <ul>
15 * <li> Adjustment to the new JBoss guide lines and also adjustments
16 * to the latest JSR-77 specification
17 * </ul>
18 **/
19 public interface BoundedRangeStatistic
20 extends BoundaryStatistic, RangeStatistic
21 {
22 // Constants -----------------------------------------------------
23
24 // Public --------------------------------------------------------
25
26 // Package protected ---------------------------------------------
27
28 // Protected -----------------------------------------------------
29
30 // Static inner classes -------------------------------------------------
31 }