Basic HTML version of Foils prepared May 12 1996

Foil 95 Sun's Digital Clock Applet to Illustrate Threads -- II

From CRPC Lectures on Java Language Applets Graphics CRPC Annual Meeting Tutorial -- May 14,1996. by Geoffrey C. Fox


public void run () {
while (clockThread !=null) {
repaint ();
try { clockThread.sleep(1000);
  • } catch (InterruptedException e) { }
} // end while
} // end run()
public void paint (Graphics g) {
Date now = new Date ();
g.drawString (now.getHours() + ":"+ now.getMinutes() + ":"+now.getSeconds(), 5, 10);
}
public void stop () {
clockThread.stop();
clockThread = null;
}
} // End Digital Clock Applet



Northeast Parallel Architectures Center, Syracuse University, npac@npac.syr.edu

If you have any comments about this server, send e-mail to webmaster@npac.syr.edu.

Page produced by wwwfoil on Sun Dec 14 1997