Here you can find the source of sleepForSomeTime(long milliseconds)
public static void sleepForSomeTime(long milliseconds)
//package com.java2s; //License from project: Open Source License public class Main { public static void sleepForSomeTime(long milliseconds) { try {//from ww w . ja v a 2 s. c o m Thread.sleep(milliseconds); } catch (InterruptedException ignore) { } } }