Here you can find the source of sleep(long time)
static void sleep(long time)
//package com.java2s; //License from project: Apache License public class Main { static void sleep(long time) { try {/*from ww w. j a va 2 s . co m*/ Thread.sleep(time); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }