public class PrefixNormalizer
extends org.xml.sax.helpers.XMLFilterImpl
Constructor | Description |
---|---|
PrefixNormalizer() |
Modifier and Type | Method | Description |
---|---|---|
void |
endPrefixMapping(java.lang.String prefix) |
Filter an end Namespace prefix mapping event.
|
void |
startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName,
org.xml.sax.Attributes atts) |
Filter a start element event.
|
void |
startPrefixMapping(java.lang.String prefix,
java.lang.String uri) |
Filter a start Namespace prefix mapping event.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
characters, endDocument, endElement, error, fatalError, getContentHandler, getDTDHandler, getEntityResolver, getErrorHandler, getFeature, getParent, getProperty, ignorableWhitespace, notationDecl, parse, parse, processingInstruction, resolveEntity, setContentHandler, setDocumentLocator, setDTDHandler, setEntityResolver, setErrorHandler, setFeature, setParent, setProperty, skippedEntity, startDocument, unparsedEntityDecl, warning
public void startPrefixMapping(java.lang.String prefix, java.lang.String uri) throws org.xml.sax.SAXException
startPrefixMapping
in class org.xml.sax.helpers.XMLFilterImpl
prefix
- The Namespace prefix.uri
- The Namespace URI.org.xml.sax.SAXException
- The client may throw
an exception during processing.public void startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, org.xml.sax.Attributes atts) throws org.xml.sax.SAXException
startElement
in class org.xml.sax.helpers.XMLFilterImpl
uri
- The element's Namespace URI, or the empty string.localName
- The element's local name, or the empty string.qName
- The element's qualified (prefixed) name, or the empty
string.atts
- The element's attributes.org.xml.sax.SAXException
- The client may throw
an exception during processing.public void endPrefixMapping(java.lang.String prefix) throws org.xml.sax.SAXException
endPrefixMapping
in class org.xml.sax.helpers.XMLFilterImpl
prefix
- The Namespace prefix.org.xml.sax.SAXException
- The client may throw
an exception during processing.