Here you can find the source of sleep(long ms)
public static void sleep(long ms)
//package com.java2s; public class Main { public static void sleep(long ms) { try {//from w ww . ja va 2 s .co m Thread.sleep(ms); } catch (InterruptedException e) { } } }