Example #1
0
 /**
  * Can be used to format the absolute simulation time (current, past or future) into
  * human-readable format: (h:m:s:ms).
  *
  * @param time - absolute simulation time like the one obtained via getCurrentTime();
  * @return human-readable representation of the given simulation time
  */
 public static String getFormattedTime(long time) {
   return scheduler.getFormattedTime(time);
 }