예제 #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);
   }
 }
예제 #2
0
 public HtmlMetaInfoReader(Book book) {
   myBook = book;
   myBook.setTitle("");
 }