Chapter 10 - Corrections ======================== p. 308, The following line of code is incorrect: if (value.toString().length() < getMaxLength()) It should read: if (value.toString().length() <= getMaxLength())