| java.lang.Object com.lowagie.text.xml.XmlParser
All known Subclasses: com.lowagie.text.html.HtmlParser,
XmlParser | public class XmlParser (Code) | | This class can be used to parse an XML file.
|
Field Summary | |
protected SAXParser | parser This is the instance of the parser. |
Constructor Summary | |
public | XmlParser() Constructs an XmlParser. |
Method Summary | |
public void | go(DocListener document, InputSource is) Parses a given file. | public void | go(DocListener document, InputSource is, String tagmap) Parses a given file. | public void | go(DocListener document, InputSource is, InputStream tagmap) Parses a given file. | public void | go(DocListener document, InputSource is, HashMap tagmap) Parses a given file. | public void | go(DocListener document, String file) Parses a given file. | public void | go(DocListener document, String file, String tagmap) Parses a given file. | public void | go(DocListener document, String file, HashMap tagmap) Parses a given file. | public static void | parse(DocListener document, InputSource is) Parses a given file that validates with the iText DTD and writes the content to a document. | public static void | parse(DocListener document, InputSource is, String tagmap) Parses a given file that validates with the iText DTD and writes the content to a document. | public static void | parse(DocListener document, InputSource is, HashMap tagmap) Parses a given file and writes the content to a document, using a certain tagmap. | public static void | parse(DocListener document, String file) Parses a given file that validates with the iText DTD and writes the content to a document. | public static void | parse(DocListener document, String file, String tagmap) Parses a given file that validates with the iText DTD and writes the content to a document. | public static void | parse(DocListener document, String file, HashMap tagmap) Parses a given file and writes the content to a document, using a certain tagmap. | public static void | parse(DocListener document, InputStream is) Parses a given file that validates with the iText DTD and writes the content to a document. | public static void | parse(DocListener document, InputStream is, String tagmap) Parses a given file that validates with the iText DTD and writes the content to a document. | public static void | parse(DocListener document, InputStream is, HashMap tagmap) Parses a given file and writes the content to a document, using a certain tagmap. | public static void | parse(DocListener document, Reader is) Parses a given file that validates with the iText DTD and writes the content to a document. | public static void | parse(DocListener document, Reader is, String tagmap) Parses a given file that validates with the iText DTD and writes the content to a document. | public static void | parse(DocListener document, Reader is, HashMap tagmap) Parses a given file and writes the content to a document, using a certain tagmap. |
XmlParser | public XmlParser()(Code) | | Constructs an XmlParser.
|
go | public void go(DocListener document, InputSource is)(Code) | | Parses a given file.
Parameters: document - The document that will listen to the parser Parameters: is - The InputStream with the contents |
go | public void go(DocListener document, InputSource is, String tagmap)(Code) | | Parses a given file.
Parameters: document - The document that will listen to the parser Parameters: is - The inputsource with the content Parameters: tagmap - A userdefined tagmap |
go | public void go(DocListener document, InputSource is, InputStream tagmap)(Code) | | Parses a given file.
Parameters: document - The document that will listen to the parser Parameters: is - the inputsource with the content Parameters: tagmap - an inputstream to a userdefined tagmap |
go | public void go(DocListener document, InputSource is, HashMap tagmap)(Code) | | Parses a given file.
Parameters: document - The document that will listen to the parser Parameters: is - the inputsource with the content Parameters: tagmap - a userdefined tagmap |
go | public void go(DocListener document, String file)(Code) | | Parses a given file.
Parameters: document - The document that will listen to the parser Parameters: file - The path to a file with the content |
go | public void go(DocListener document, String file, String tagmap)(Code) | | Parses a given file.
Parameters: document - the document that will listen to the parser Parameters: file - the path to a file with the content Parameters: tagmap - a userdefined tagmap |
go | public void go(DocListener document, String file, HashMap tagmap)(Code) | | Parses a given file.
Parameters: document - The document that will listen to the parser Parameters: file - the path to a file with the content Parameters: tagmap - a userdefined tagmap |
parse | public static void parse(DocListener document, InputSource is)(Code) | | Parses a given file that validates with the iText DTD and writes the content to a document.
Parameters: document - The document that will listen to the parser Parameters: is - the inputsource with the content |
parse | public static void parse(DocListener document, InputSource is, String tagmap)(Code) | | Parses a given file that validates with the iText DTD and writes the content to a document.
Parameters: document - The document that will listen to the parser Parameters: is - The inputsource with the content Parameters: tagmap - a userdefined tagmap |
parse | public static void parse(DocListener document, InputSource is, HashMap tagmap)(Code) | | Parses a given file and writes the content to a document, using a certain tagmap.
Parameters: document - The document that will listen to the parser Parameters: is - The inputsource with the content Parameters: tagmap - a userdefined tagmap |
parse | public static void parse(DocListener document, String file)(Code) | | Parses a given file that validates with the iText DTD and writes the content to a document.
Parameters: document - The document that will listen to the parser Parameters: file - The path to a file with the content |
parse | public static void parse(DocListener document, String file, String tagmap)(Code) | | Parses a given file that validates with the iText DTD and writes the content to a document.
Parameters: document - The document that will listen to the parser Parameters: file - The path to a file with the content Parameters: tagmap - A userdefined tagmap |
parse | public static void parse(DocListener document, String file, HashMap tagmap)(Code) | | Parses a given file and writes the content to a document, using a certain tagmap.
Parameters: document - The document that will listen to the parser Parameters: file - The path to a file with the content Parameters: tagmap - A userdefined tagmap |
parse | public static void parse(DocListener document, InputStream is)(Code) | | Parses a given file that validates with the iText DTD and writes the content to a document.
Parameters: document - The document that will listen to the parser Parameters: is - The inputsource with the content |
parse | public static void parse(DocListener document, InputStream is, String tagmap)(Code) | | Parses a given file that validates with the iText DTD and writes the content to a document.
Parameters: document - The document that will listen to the parser Parameters: is - The inputstream with the content Parameters: tagmap - A userdefined tagmap |
parse | public static void parse(DocListener document, InputStream is, HashMap tagmap)(Code) | | Parses a given file and writes the content to a document, using a certain tagmap.
Parameters: document - The document that will listen to the parser Parameters: is - The InputStream with the content Parameters: tagmap - A userdefined tagmap |
parse | public static void parse(DocListener document, Reader is)(Code) | | Parses a given file that validates with the iText DTD and writes the content to a document.
Parameters: document - The document that will listen to the parser Parameters: is - The reader that reads the content |
parse | public static void parse(DocListener document, Reader is, String tagmap)(Code) | | Parses a given file that validates with the iText DTD and writes the content to a document.
Parameters: document - The document that will listen to the parser Parameters: is - The reader that reads the content Parameters: tagmap - A userdefined tagmap |
parse | public static void parse(DocListener document, Reader is, HashMap tagmap)(Code) | | Parses a given file and writes the content to a document, using a certain tagmap.
Parameters: document - The document that will listen to the parser Parameters: is - The reader that reads the content Parameters: tagmap - A userdefined tagmap |
|
|