Java tutorial
//package com.java2s; import java.util.Timer; import java.util.TimerTask; public class Main { public static void timer(TimerTask t, int time) { new Timer().schedule(t, time); } public static void timer(TimerTask t) { new Timer().schedule(t, 3000); } }