|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.xerces.util.ParserConfigurationSettings org.apache.xerces.parsers.BasicParserConfiguration org.apache.xerces.parsers.DTDConfiguration
public class DTDConfiguration
This is the DTD-only parser configuration. It extends the basic
configuration with a standard set of parser components appropriate
to DTD-centric validation. Since
the Xerces2 reference implementation document and DTD scanner
implementations are capable of acting as pull parsers, this
configuration implements the
XMLPullParserConfiguration
interface.
In addition to the features and properties recognized by the base parser configuration, this class recognizes these additional features and properties:
Constructor Summary | |
---|---|
DTDConfiguration()
Default constructor. |
|
DTDConfiguration(SymbolTable symbolTable)
Constructs a parser configuration using the specified symbol table. |
|
DTDConfiguration(SymbolTable symbolTable,
XMLGrammarPool grammarPool)
Constructs a parser configuration using the specified symbol table and grammar pool. |
|
DTDConfiguration(SymbolTable symbolTable,
XMLGrammarPool grammarPool,
XMLComponentManager parentSettings)
Constructs a parser configuration using the specified symbol table, grammar pool, and parent settings. |
Method Summary | |
---|---|
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. |
boolean |
parse(boolean complete)
Parses the document in a pull parsing fashion. |
void |
parse(XMLInputSource source)
Parses the specified input source. |
void |
setInputSource(XMLInputSource inputSource)
Sets the input source for the document to parse. |
void |
setLocale(java.util.Locale locale)
Set the locale to use for messages. |
Methods inherited from class org.apache.xerces.parsers.BasicParserConfiguration |
---|
getDocumentHandler, getDTDContentModelHandler, getDTDHandler, getEntityResolver, getErrorHandler, getLocale, setDocumentHandler, setDTDContentModelHandler, setDTDHandler, setEntityResolver, setErrorHandler, setFeature, setProperty |
Methods inherited from class org.apache.xerces.util.ParserConfigurationSettings |
---|
addRecognizedFeatures, addRecognizedProperties, getFeature, getProperty |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.apache.xerces.xni.parser.XMLParserConfiguration |
---|
addRecognizedFeatures, addRecognizedProperties, getDocumentHandler, getDTDContentModelHandler, getDTDHandler, getEntityResolver, getErrorHandler, getFeature, getLocale, getProperty, setDocumentHandler, setDTDContentModelHandler, setDTDHandler, setEntityResolver, setErrorHandler, setFeature, setProperty |
Constructor Detail |
---|
public DTDConfiguration()
public DTDConfiguration(SymbolTable symbolTable)
symbolTable
- The symbol table to use.public DTDConfiguration(SymbolTable symbolTable, XMLGrammarPool grammarPool)
REVISIT: Grammar pool will be updated when the new validation engine is implemented.
symbolTable
- The symbol table to use.grammarPool
- The grammar pool to use.public DTDConfiguration(SymbolTable symbolTable, XMLGrammarPool grammarPool, XMLComponentManager parentSettings)
REVISIT: Grammar pool will be updated when the new validation engine is implemented.
symbolTable
- The symbol table to use.grammarPool
- The grammar pool to use.parentSettings
- The parent settings.Method Detail |
---|
public void setLocale(java.util.Locale locale) throws XNIException
setLocale
in interface XMLParserConfiguration
setLocale
in class BasicParserConfiguration
locale
- The locale object to use for localization of messages.
XNIException
- Thrown if the parser does not support the
specified locale.public void setInputSource(XMLInputSource inputSource) throws XMLConfigurationException, java.io.IOException
setInputSource
in interface XMLPullParserConfiguration
inputSource
- The document's input source.
XMLConfigurationException
- Thrown if there is a
configuration error when initializing the
parser.
java.io.IOException
- Thrown on I/O error.parse(boolean)
public boolean parse(boolean complete) throws XNIException, java.io.IOException
parse
in interface XMLPullParserConfiguration
complete
- True if the pull parser should parse the
remaining document completely.
XNIException
- Any XNI exception, possibly wrapping
another exception.
java.io.IOException
- An IO exception from the parser, possibly
from a byte stream or character stream
supplied by the parser.setInputSource(org.apache.xerces.xni.parser.XMLInputSource)
public void cleanup()
cleanup
in interface XMLPullParserConfiguration
public void parse(XMLInputSource source) throws XNIException, java.io.IOException
parse
in interface XMLParserConfiguration
parse
in class BasicParserConfiguration
source
- The input source.
XNIException
- Throws exception on XNI error.
java.io.IOException
- Throws exception on i/o error.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |