Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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);
    }
}