Hi there,
I might be wrong but I found the code in
SAXmyHtmlHandler ::startElement & endElement can
change a bit to let others over-ride funtions easier
public void startElement(String uri, String lname,
String name, Attributes attrs) {
....
super.handleStartingTags(name, attributes);
//every thing regards to this kind of code super.xxxx
//super.handleEndingTags..in other methods
..
}
should be change to
public void startElement(String uri, String lname,
String name, Attributes attrs) {
....
handleStartingTags(name, attributes);
//no super
}
================
if i want to improve the lib to support other html
tags, generate PDF forms or something..I will have
more freedom without changes to your library code!!!!
best regards,,
Vu Ngoc Tan/Hop
__________________________________
Do you Yahoo!?
Exclusive Video Premiere - Britney Spears
http://launch.yahoo.com/promos/britneyspears/
-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive? Does it
help you create better code? SHARE THE LOVE, and help us help
YOU! Click Here: http://sourceforge.net/donate/
_______________________________________________
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions