Here you can find the source of format(long time)
public static String format(long time)
//package com.java2s; //License from project: LGPL public class Main { public static String format(long time) { // Todo/*from w w w. jav a2 s . c o m*/ return String.valueOf(time) + " in game ticks."; } }