Here you can find the source of getMethodExecuteCount()
public static String getMethodExecuteCount()
//package com.java2s; /**//from w w w.j ava 2 s.c o m * ?????????????????????????.<br> * * @author T.Okuyama * @license GPL(Lv3) */ import java.util.concurrent.atomic.AtomicLong; public class Main { private static AtomicLong[] accessCountList = new AtomicLong[24]; public static String getMethodExecuteCount() { StringBuffer strBuf = new StringBuffer(100); for (int i = 0; i < 24; i++) { strBuf.append("Hour="); strBuf.append(i); strBuf.append(""); strBuf.append(" Count=["); strBuf.append(((AtomicLong) accessCountList[i]).toString()); strBuf.append("], "); } return strBuf.toString(); } }