Save This Page
Home » glassfish-v2ur2-b04-src » javax » management » j2ee » [javadoc | source]
    1   package javax.management.j2ee;
    2   
    3   /**
    4    * Represents a standard Count Measurement
    5    *
    6    * @author <a href="mailto:marc@jboss.org">Marc Fleury</a>
    7    * @author <a href="mailto:andreas@jboss.org">Andreas Schaefer</a>
    8    * @version $Revision: 1.1 $
    9    *   
   10    * <p><b>Revisions:</b>
   11    *
   12    * <p><b>200112009 Andreas Schaefer:</b>
   13    * <ul>
   14    * <li> Adjustment to the new JBoss guide lines and also adjustments
   15    *      to the latest JSR-77 specification
   16    * </ul>
   17    **/
   18   public interface CountStatistic
   19      extends Statistic
   20   {
   21      // Constants -----------------------------------------------------
   22      
   23      // Public --------------------------------------------------------
   24      
   25      /**
   26       * @return The Count since the last reset
   27       **/
   28      public long getCount();
   29      
   30      // Package protected ---------------------------------------------
   31      
   32      // Protected -----------------------------------------------------
   33      
   34      // Static inner classes -------------------------------------------------
   35   }

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