public void characterDataHandler(char[] ch, int start, int length) { // TODO + length -- remove final String text = new String(ch).substring(start, start + length); if (myReadTitle) { myBook.setTitle(myBook.getTitle() + text); } }
public HtmlMetaInfoReader(Book book) { myBook = book; myBook.setTitle(""); }