1 8 9 package mx4j.tools.stats; 10 11 import java.util.Date ; 12 import java.util.SortedMap ; 13 14 24 public interface StatisticsRecorderMBean 25 { 26 29 public Number getMax(); 30 31 34 public Number getAverage(); 35 36 39 public Number getMin(); 40 41 45 public int getMaxEntries(); 46 47 50 public void setMaxEntries(int maxEntries); 51 52 55 public Date getRecordingStart(); 56 57 60 public SortedMap getEntries(); 61 62 65 public boolean isActive(); 66 67 70 public void start(); 71 72 75 public void stop(); 76 } 77 | Popular Tags |