Here you can find the source of formattedStats(String pExecTime, int pTxns)
public static String formattedStats(String pExecTime, int pTxns)
//package com.java2s; public class Main { public static String formattedStats(String pExecTime, int pTxns) { String result = ""; result = Integer.toString(pTxns) + " txns, in " + pExecTime + " secs."; return result; }/*from ww w . j av a 2 s .com*/ }