Errata

Java Examples in a Nutshell

Errata for Java Examples in a Nutshell

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Date Corrected".

The following errata were submitted by our customers and approved as valid errors by the author or editor.

Color key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted By Date submitted Date corrected
Printed
Page 6
last paragraph, line 2

examples/basics

NOW READS:
je3/basics

Anonymous    Aug 01, 2005
Printed
Page 68
5th line of code

this.add("Center", textarea);
should be:
this.add(textarea, "Center");

Anonymous    May 01, 2008
Other Digital Version
68
5th line of code

this.add("Center", textarea);
should be:
this.add(textarea, "Center");

Anonymous    May 01, 2008
Printed
Page 209
First Paragraph of "Unicode" section

(...Support for Unicode 3.0 will be included in Java 1.4 or another future release.)

NOW READS:
(...Support for Unicode 3.0 is included in Java 1.4.)

Anonymous    Aug 01, 2005
Printed
Page 246
Example 10-2

The code for example 10-2, as it was printed would not compile.

The first line of the example NOW READS:

package je3.serialization;

Next, there are four places where the code read "IntList" when it should read
SerialIntList. In lines 65, 66, 83, and 85 "IntList" NOW READS "SerialIntList".

Anonymous    Jul 01, 2004