1 23 24 28 29 34 35 package com.sun.enterprise.admin.monitor.util; 36 import javax.management.j2ee.statistics.*; 37 38 42 public class CountStatisticImplMock extends StatisticMock implements CountStatistic { 43 private long count; 44 45 public CountStatisticImplMock(long countVal, String name, String unit, 46 String desc, long startTime, long sampleTime ) { 47 super(name, unit, desc, startTime, sampleTime); 48 count=countVal; 49 } 50 51 public long getCount() { 52 return count; 53 } 54 } 55 | Popular Tags |