Methods Summary |
---|
public void | addRecognizedFeatures(java.lang.String[] featureIds)Allows a parser to add parser specific features to be recognized
and managed by the parser configuration.
|
public void | addRecognizedProperties(java.lang.String[] propertyIds)Allows a parser to add parser specific properties to be recognized
and managed by the parser configuration.
|
public org.apache.xerces.xni.XMLDTDContentModelHandler | getDTDContentModelHandler()Returns the registered DTD content model handler.
|
public org.apache.xerces.xni.XMLDTDHandler | getDTDHandler()Returns the registered DTD handler.
|
public org.apache.xerces.xni.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(java.lang.String featureId)Returns the state of a feature.
|
public java.util.Locale | getLocale()Returns the locale.
|
public java.lang.Object | getProperty(java.lang.String propertyId)Returns the value of a property.
|
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. If a client application wants to terminate
parsing early, it should throw an exception.
When this method returns, all characters streams and byte streams
opened by the parser are closed.
|
public void | setDTDContentModelHandler(org.apache.xerces.xni.XMLDTDContentModelHandler dtdContentModelHandler)Sets the DTD content model handler.
|
public void | setDTDHandler(org.apache.xerces.xni.XMLDTDHandler dtdHandler)Sets the DTD handler.
|
public void | setDocumentHandler(org.apache.xerces.xni.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(java.lang.String featureId, boolean state)Sets the state of a feature. This method is called by the parser
and gets propagated to components in this parser configuration.
|
public void | setLocale(java.util.Locale locale)Set the locale to use for messages.
|
public void | setProperty(java.lang.String propertyId, java.lang.Object value)Sets the value of a property. This method is called by the parser
and gets propagated to components in this parser configuration.
|