Here you can find the source of sleep()
public static void sleep() throws InterruptedException
//package com.java2s; //License from project: Open Source License public class Main { public static void sleep() throws InterruptedException { Thread.sleep(1000);//w w w. j a v a 2 s . c o m } }