public class CallbackTester { static public void main(String[] args) { Timer timer = new Timer(); Clock clock = new Clock(); timer.setCallback(clock); timer.run(); } }