TimerSample.java Source code

Java tutorial

Introduction

Here is the source code for TimerSample.java

Source

import java.awt.EventQueue;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.Timer;

public class TimerSample {
    public static void main(String args[]) {
        Runnable runner = new Runnable() {
            public void run() {
                Timer.setLogTimers(true);
                ActionListener actionListener = new ActionListener() {
                    public void actionPerformed(ActionEvent actionEvent) {
                        System.out.println("Hello World Timer");
                    }
                };
                Timer timer = new Timer(500, actionListener);
                timer.start();
            }
        };
        EventQueue.invokeLater(runner);
    }
}