John Pacino wrote:

I do not see how the properties object will help me in this situation. I need to create a table in a java class and then send it to the XMLParser so it can be rendered in the PDF, similiar to the way XmlPeer is used for string objects.

I didn't understand the question.
I thought you had the content of the table inside the XML.
Now I see that you want to add a complete table coming from elsewhere.
I have done this in the past in two different ways:

- you can parse the XML twice:
 once to add the contents of the table
 a second time to generate the PDF
- you can extend the handler class so
 that it can handle processing instructions.

The first solution condemns you to class Table.
The second one allows you to use PdfPTable
(which is a good thing).

best regards,
Bruno


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to