The call to Document.newPage() forwards the request to its listeners, but
the result of the listeners newPage() call is ignored:

DocListener listener;
for (Iterator iterator = listeners.iterator();
            iterator.hasNext(); ) {
   listener = (DocListener) iterator.next();
   listener.newPage(); // <-- Result is ignored!
}
return true;

Is this a bug? Shouldn't it honour the results of its listeners, like in
Document.add(Element)?





-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to