public class TimerDemo implements Tickable {

    public TimerDemo () {
        TimerThread t = new TimerThread (this, 2000);
        t.start ();
    }


    public static void main (String[] args) {
        TimerDemo demo = new TimerDemo ();
    }


    public void tick () {
        System.out.println ("tick");
    }

}
