|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.xml.sax.helpers.ParserAdapter
Adapt a SAX1 Parser as a SAX2 XMLReader.
This module, both source code and documentation, is in the Public Domain, and comes with NO WARRANTY.
This class wraps a SAX1 Parser and makes it act as a SAX2 XMLReader, with feature, property, and Namespace support. Note that it is not possible to report skippedEntity events, since SAX1 does not make that information available.
This adapter does not test for duplicate Namespace-qualified attribute names.
Note that this is not the class shipped with SAX 2.0.1; this class takes into account the presence of AccessControllers in J2EE 1.4. It also throws NullPointerExceptions when setters are called with null parameters; the 2.0.1 version does not exhibit this behaviour.
XMLReaderAdapter
,
XMLReader
,
Parser
Constructor Summary | |
ParserAdapter()
Construct a new parser adapter. |
|
ParserAdapter(Parser parser)
Construct a new parser adapter. |
Method Summary | |
void |
characters(char[] ch,
int start,
int length)
Adapt a SAX1 characters event. |
void |
endDocument()
Adapt a SAX1 end document event. |
void |
endElement(java.lang.String qName)
Adapt a SAX1 end element event. |
ContentHandler |
getContentHandler()
Return the current content handler. |
DTDHandler |
getDTDHandler()
Return the current DTD handler. |
EntityResolver |
getEntityResolver()
Return the current entity resolver. |
ErrorHandler |
getErrorHandler()
Return the current error handler. |
boolean |
getFeature(java.lang.String name)
Check a parser feature. |
java.lang.Object |
getProperty(java.lang.String name)
Get a parser property. |
void |
ignorableWhitespace(char[] ch,
int start,
int length)
Adapt a SAX1 ignorable whitespace event. |
void |
parse(InputSource input)
Parse an XML document. |
void |
parse(java.lang.String systemId)
Parse an XML document. |
void |
processingInstruction(java.lang.String target,
java.lang.String data)
Adapt a SAX1 processing instruction event. |
void |
setContentHandler(ContentHandler handler)
Set the content handler. |
void |
setDocumentLocator(Locator locator)
Adapt a SAX1 document locator event. |
void |
setDTDHandler(DTDHandler handler)
Set the DTD handler. |
void |
setEntityResolver(EntityResolver resolver)
Set the entity resolver. |
void |
setErrorHandler(ErrorHandler handler)
Set the error handler. |
void |
setFeature(java.lang.String name,
boolean state)
Set a feature for the parser. |
void |
setProperty(java.lang.String name,
java.lang.Object value)
Set a parser property. |
void |
startDocument()
Adapt a SAX1 start document event. |
void |
startElement(java.lang.String qName,
AttributeList qAtts)
Adapt a SAX1 startElement event. |
Methods inherited from class java.lang.Object |
equals,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Constructor Detail |
public ParserAdapter() throws SAXException
Use the "org.xml.sax.parser" property to locate the embedded SAX1 driver.
public ParserAdapter(Parser parser)
Note that the embedded parser cannot be changed once the adapter is created; to embed a different parser, allocate a new ParserAdapter.
parser
- The SAX1 parser to embed.Method Detail |
public void setFeature(java.lang.String name, boolean state) throws SAXNotRecognizedException, SAXNotSupportedException
The only features supported are namespaces and namespace-prefixes.
name
- The feature name, as a complete URI.state
- The requested feature state.XMLReader.setFeature(java.lang.String, boolean)
public boolean getFeature(java.lang.String name) throws SAXNotRecognizedException, SAXNotSupportedException
The only features supported are namespaces and namespace-prefixes.
name
- The feature name, as a complete URI.XMLReader.setFeature(java.lang.String, boolean)
public void setProperty(java.lang.String name, java.lang.Object value) throws SAXNotRecognizedException, SAXNotSupportedException
No special properties are currently supported.
name
- The property name.value
- The property value.XMLReader.setProperty(java.lang.String, java.lang.Object)
public java.lang.Object getProperty(java.lang.String name) throws SAXNotRecognizedException, SAXNotSupportedException
No special properties are currently supported.
name
- The property name.XMLReader.getProperty(java.lang.String)
public void setEntityResolver(EntityResolver resolver)
resolver
- The new entity resolver.XMLReader.setEntityResolver(org.xml.sax.EntityResolver)
public EntityResolver getEntityResolver()
XMLReader.getEntityResolver()
public void setDTDHandler(DTDHandler handler)
resolver
- The new DTD handler.XMLReader.setEntityResolver(org.xml.sax.EntityResolver)
public DTDHandler getDTDHandler()
XMLReader.getEntityResolver()
public void setContentHandler(ContentHandler handler)
resolver
- The new content handler.XMLReader.setEntityResolver(org.xml.sax.EntityResolver)
public ContentHandler getContentHandler()
XMLReader.getEntityResolver()
public void setErrorHandler(ErrorHandler handler)
resolver
- The new error handler.XMLReader.setEntityResolver(org.xml.sax.EntityResolver)
public ErrorHandler getErrorHandler()
XMLReader.getEntityResolver()
public void parse(java.lang.String systemId) throws java.io.IOException, SAXException
systemId
- The absolute URL of the document.parse(org.xml.sax.InputSource)
,
Parser.parse(java.lang.String)
public void parse(InputSource input) throws java.io.IOException, SAXException
input
- An input source for the document.parse(java.lang.String)
,
Parser.parse(org.xml.sax.InputSource)
public void setDocumentLocator(Locator locator)
locator
- A document locator.ContentHandler.setDocumentLocator(org.xml.sax.Locator)
public void startDocument() throws SAXException
DocumentHandler.startDocument()
public void endDocument() throws SAXException
DocumentHandler.endDocument()
public void startElement(java.lang.String qName, AttributeList qAtts) throws SAXException
If necessary, perform Namespace processing.
qName
- The qualified (prefixed) name.qAtts
- The XML 1.0 attribute list (with qnames).public void endElement(java.lang.String qName) throws SAXException
qName
- The qualified (prefixed) name.DocumentHandler.endElement(java.lang.String)
public void characters(char[] ch, int start, int length) throws SAXException
ch
- An array of characters.start
- The starting position in the array.length
- The number of characters to use.DocumentHandler.characters(char[], int, int)
public void ignorableWhitespace(char[] ch, int start, int length) throws SAXException
ch
- An array of characters.start
- The starting position in the array.length
- The number of characters to use.DocumentHandler.ignorableWhitespace(char[], int, int)
public void processingInstruction(java.lang.String target, java.lang.String data) throws SAXException
target
- The processing instruction target.data
- The remainder of the processing instructionDocumentHandler.processingInstruction(java.lang.String, java.lang.String)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |