Here you can find the source of pause()
protected static void pause()
//package com.java2s; //License from project: Apache License import java.util.concurrent.TimeUnit; public class Main { protected static void pause() { try {// www .ja va2 s .co m TimeUnit.DAYS.sleep(1); } catch (InterruptedException e) { e.printStackTrace(); } } }