Java Examples in a Nutshell by David Flanagan Here are the changes from the 4/98 reprint: (xiii) 1st para.: the correct URL for the examples is: http://www.oreilly.com/catalog/jenut (1) last paragraph, second sentence: changed "They" to "There" {24} The end of example 2-4 now reads: public void draw(Graphics g) { g.setColor(fill); g.fillRect(x1, y1, (x2 - x1), (y2 - y1)); g.setColor(border); g.drawRect(x1, y1, (x2 - x1), (y2 - y1)); } {41} Example 3-1: Added a closing " to the class-comment for "Hello World!" {42} second last line: font = new Font("Helvetica", Font.BOLD, 48); changed "Helvetica" to "sansserif" (71) second paragraph. 4th sentence: changed "to created" to "to create" (90) 1st para., line 2: changed "use it structure" to "use it to structure" (93) second last paragraph, line 1: changed "The adaptor class..." to "The adapter class..." (99) example 5-9, line 5: changed "all the event" to "all the events" (139) under exercise 6-1, in the last sentence, changed "more" to "move"