Here you can find the source of sleep()
public static void sleep() throws InterruptedException
//package com.java2s; //License from project: Apache License public class Main { public static final long TIMEOUT = 5000; public static void sleep() throws InterruptedException { sleep(TIMEOUT);/* ww w. j a v a 2 s.co m*/ } public static void sleep(long timeout) throws InterruptedException { Thread.sleep(TIMEOUT); } }