Chapter 14: Events

Page 298: In the paint() method j <= i should be j < i; that is

  public void paint(Graphics g) {
	for (int j=0; j < i; j++) {
      g.drawString(events[j], 5, 15*j + 15);
    }
  }

Corrections to Other Chapters
[ Cafe Au Lait | Books | Trade Shows | Links | FAQ | Tutorial | User Groups ]
Copyright 1997 Elliotte Rusty Harold
elharo@sunsite.unc.edu
Last Modified April 7, 1997