com.lowagie.text.xml
Class SAXmyHandler
java.lang.Object
org.xml.sax.helpers.DefaultHandler
com.lowagie.text.xml.SAXiTextHandler
com.lowagie.text.xml.SAXmyHandler
- All Implemented Interfaces:
- ContentHandler, DTDHandler, EntityResolver, ErrorHandler
public class SAXmyHandler
- extends SAXiTextHandler
The Tags-class maps several XHTML-tags to iText-objects.
|
Field Summary |
protected HashMap |
myTags
This hashmap contains all the custom keys and peers. |
|
Constructor Summary |
SAXmyHandler(DocListener document,
HashMap myTags)
Constructs a new SAXiTextHandler that will translate all the events
triggered by the parser to actions on the Document-object. |
| Methods inherited from class org.xml.sax.helpers.DefaultHandler |
endDocument, endPrefixMapping, error, fatalError, notationDecl, processingInstruction, resolveEntity, setDocumentLocator, skippedEntity, startDocument, startPrefixMapping, unparsedEntityDecl, warning |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
myTags
protected HashMap myTags
- This hashmap contains all the custom keys and peers.
SAXmyHandler
public SAXmyHandler(DocListener document,
HashMap myTags)
- Constructs a new SAXiTextHandler that will translate all the events
triggered by the parser to actions on the
Document-object.
- Parameters:
document - this is the document on which events must be triggeredmyTags - a userdefined tagmap
startElement
public void startElement(String uri,
String lname,
String name,
Attributes attrs)
- This method gets called when a start tag is encountered.
- Specified by:
startElement in interface ContentHandler- Overrides:
startElement in class SAXiTextHandler
- Parameters:
uri - the Uniform Resource Identifierlname - the local name (without prefix), or the empty string if Namespace processing is not being performed.name - the name of the tag that is encounteredattrs - the list of attributes
endElement
public void endElement(String uri,
String lname,
String name)
- This method gets called when an end tag is encountered.
- Specified by:
endElement in interface ContentHandler- Overrides:
endElement in class SAXiTextHandler
- Parameters:
uri - the Uniform Resource Identifierlname - the local name (without prefix), or the empty string if Namespace processing is not being performed.name - the name of the tag that ends