Save This Page
Home » glassfish-v2ur2-b04-src » javax » management » j2ee » [javadoc | source]
    1   package javax.management.j2ee;
    2   
    3   /**
    4    * Represents a standard measurements of the upper and lower
    5    * limits of the value of an attribute
    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 BoundaryStatistic
   20      extends Statistic
   21   {
   22      // Constants -----------------------------------------------------
   23      
   24      // Public --------------------------------------------------------
   25      
   26      /**
   27      * @return The lower limit of the value of this attribute
   28      **/
   29      public long getLowerBound();
   30   
   31      /**
   32      * @return The upper limit of the value of this attribute
   33      **/
   34      public long getUpperBound();
   35   
   36      // Package protected ---------------------------------------------
   37      
   38      // Protected -----------------------------------------------------
   39      
   40      // Static inner classes -------------------------------------------------
   41   }

Save This Page
Home » glassfish-v2ur2-b04-src » javax » management » j2ee » [javadoc | source]