Method Summary |
|
public void | addRecognizedFeatures(String[] featureIds) Allows a parser to add parser specific features to be recognized
and managed by the parser configuration. |
public void | addRecognizedProperties(String[] propertyIds) Allows a parser to add parser specific properties to be recognized
and managed by the parser configuration. |
public void | cleanup() If the application decides to terminate parsing before the xml document
is fully parsed, the application should call this method to free any
resource allocated during parsing. |
public XMLDTDContentModelHandler | getDTDContentModelHandler() Returns the registered DTD content model handler. |
public XMLDTDHandler | getDTDHandler() Returns the registered DTD handler. |
public XMLDocumentHandler | getDocumentHandler() Returns the registered document handler. |
public XMLEntityResolver | getEntityResolver() Returns the registered entity resolver. |
public XMLErrorHandler | getErrorHandler() Returns the registered error handler. |
public boolean | getFeature(String featureId) Returns the state of a feature. |
public Locale | getLocale() Returns the locale. |
public Object | getProperty(String propertyId) Returns the value of a property. |
public boolean | parse(boolean complete) Parses the document in a pull parsing fashion. |
public void | parse(XMLInputSource inputSource) Parse an XML document.
The parser can use this method to instruct this configuration
to begin parsing an XML document from any valid input source
(a character stream, a byte stream, or a URI).
Parsers may not invoke this method while a parse is in progress.
Once a parse is complete, the parser may then parse another XML
document.
This method is synchronous: it will not return until parsing
has ended. |
protected void | reset() |
public void | setDTDContentModelHandler(XMLDTDContentModelHandler dtdContentModelHandler) Sets the DTD content model handler. |
public void | setDTDHandler(XMLDTDHandler dtdHandler) Sets the DTD handler. |
public void | setDocumentHandler(XMLDocumentHandler documentHandler) Sets the document handler to receive information about the document. |
public void | setEntityResolver(XMLEntityResolver entityResolver) Sets the entity resolver. |
public void | setErrorHandler(XMLErrorHandler errorHandler) Sets the error handler. |
public void | setFeature(String featureId, boolean state) Sets the state of a feature. |
public void | setInputSource(XMLInputSource inputSource) Sets the input source for the document to parse. |
public void | setLocale(Locale locale) Set the locale to use for messages. |
public void | setProperty(String propertyId, Object value) Sets the value of a property. |