Here you can find the source of pauseMilliSeconds(long pauseMilliSeconds)
public static void pauseMilliSeconds(long pauseMilliSeconds)
//package com.java2s; //License from project: LGPL public class Main { public static void pauseMilliSeconds(long pauseMilliSeconds) { System.out.format("INFO:Utils::pauseMilliSeconds: %d ...", pauseMilliSeconds); try {/* w w w . j a va2 s . c o m*/ Thread.sleep(pauseMilliSeconds); } catch (InterruptedException e) { } System.out.format("consumed\n"); } }