1 23 24 28 29 package com.sun.enterprise.admin.monitor.stats; 30 import javax.management.j2ee.statistics.Stats ; 31 import javax.management.j2ee.statistics.CountStatistic ; 32 33 38 public interface JVMClassLoadingStats extends Stats { 39 40 45 public CountStatistic getLoadedClassCount(); 46 47 52 public CountStatistic getTotalLoadedClassCount(); 53 54 58 public CountStatistic getUnloadedClassCount(); 59 60 } 61 | Popular Tags |