Here you can find the source of sleepThread(long millSecd)
public static void sleepThread(long millSecd)
//package com.java2s; //License from project: LGPL public class Main { public static void sleepThread(long millSecd) { try {// w w w .j a v a2s . co m Thread.sleep(millSecd); } catch (InterruptedException e) { e.printStackTrace(); } } }