Here you can find the source of sleep(int ms)
public static boolean sleep(int ms)
//package com.java2s; //License from project: Apache License public class Main { public static boolean sleep(int ms) { try {//www. j a va 2 s . c o m Thread.sleep(ms); } catch (InterruptedException e) { e.printStackTrace(); return false; } return true; } }