com.lowagie.text.xml.simpleparser
public interface SimpleXMLDocHandler
SimpleXMLParser
.
Method Summary | |
---|---|
void | endDocument()
Called after the document is parsed. |
void | endElement(String tag)
Called when an end tag is found. |
void | startDocument()
Called when the document starts to be parsed. |
void | startElement(String tag, HashMap h)
Called when a start tag is found. |
void | text(String str)
Called when a text element is found. |
Parameters: tag the tag name
Parameters: tag the tag name h the tag's attributes
Parameters: str the text element, probably a fragment.