Here you can find the source of pauseSeconds(long pauseSeconds)
public static void pauseSeconds(long pauseSeconds)
//package com.java2s; //License from project: LGPL public class Main { public static void pauseSeconds(long pauseSeconds) { System.out.format("INFO:Utils::pauseSeconds: %d ...", pauseSeconds); try {//from w ww .ja v a 2s . c o m Thread.sleep(pauseSeconds * 1000); } catch (InterruptedException e) { } System.out.format("consumed\n"); } }