Exemplo n.º 1
0
 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);
   }
 }
Exemplo n.º 2
0
 public HtmlMetaInfoReader(Book book) {
   myBook = book;
   myBook.setTitle("");
 }