p. 347: Under the Java binding for DOMString Public should be public (uncapitalized)
DOMString
Public
public
p. 373: The example for getAttribute() is incorrect.
getAttribute()
if (elem.getAttribute("name") == "") {
should be
if (elem.getAttribute("name").equals("")) {