|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.xerces.parsers.BasicParserConfiguration | +--org.apache.xerces.parsers.StandardParserConfiguration
This is the "standard" parser configuration. It extends the basic
configuration with the standard set of parser components. Since
the Xerces2 reference implementation document and DTD scanner
implementations are capable of acting as pull parsers, the
standard 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:
Field Summary | |
protected static java.lang.String |
ALLOW_JAVA_ENCODINGS
Feature identifier: allow Java encodings. |
protected static java.lang.String |
CONTINUE_AFTER_FATAL_ERROR
Feature identifier: continue after fatal error. |
protected static java.lang.String |
DATATYPE_VALIDATOR_FACTORY
Property identifier: datatype validator factory. |
protected static java.lang.String |
DOCUMENT_SCANNER
Property identifier document scanner: |
protected static java.lang.String |
DTD_SCANNER
Property identifier: DTD scanner. |
protected static java.lang.String |
DTD_VALIDATOR
Property identifier: DTD validator. |
protected static java.lang.String |
ENTITY_MANAGER
Property identifier: entity manager. |
protected static java.lang.String |
ERROR_REPORTER
Property identifier: error reporter. |
protected DatatypeValidatorFactory |
fDatatypeValidatorFactory
Datatype validator factory. |
protected org.apache.xerces.xni.parser.XMLDTDScanner |
fDTDScanner
DTD scanner. |
protected XMLDTDValidator |
fDTDValidator
DTD Validator. |
protected XMLEntityManager |
fEntityManager
Entity manager. |
protected XMLErrorReporter |
fErrorReporter
Error reporter. |
protected GrammarPool |
fGrammarPool
Grammar pool. |
protected org.apache.xerces.xni.XMLLocator |
fLocator
Locator |
protected XMLNamespaceBinder |
fNamespaceBinder
Namespace binder. |
protected boolean |
fParseInProgress
True if a parse is in progress. |
protected org.apache.xerces.xni.parser.XMLDocumentScanner |
fScanner
Document scanner. |
protected static java.lang.String |
GRAMMAR_POOL
Property identifier: grammar pool. |
protected static java.lang.String |
LOAD_EXTERNAL_DTD
Feature identifier: load external DTD. |
protected static java.lang.String |
NAMESPACE_BINDER
Property identifier: namespace binder. |
protected static java.lang.String |
NOTIFY_BUILTIN_REFS
Feature identifier: notify built-in refereces. |
protected static java.lang.String |
NOTIFY_CHAR_REFS
Feature identifier: notify character refereces. |
protected static java.lang.String |
WARN_ON_DUPLICATE_ATTDEF
Feature identifier: warn on duplicate attribute definition. |
protected static java.lang.String |
WARN_ON_UNDECLARED_ELEMDEF
Feature identifier: warn on undeclared element definition. |
Fields inherited from class org.apache.xerces.parsers.BasicParserConfiguration |
ENTITY_RESOLVER,
ERROR_HANDLER,
EXTERNAL_GENERAL_ENTITIES,
EXTERNAL_PARAMETER_ENTITIES,
fComponents,
fDocumentHandler,
fDTDContentModelHandler,
fDTDHandler,
fFeatures,
fProperties,
fRecognizedFeatures,
fRecognizedProperties,
fSymbolTable,
NAMESPACES,
SYMBOL_TABLE,
VALIDATION,
XML_STRING |
Constructor Summary | |
StandardParserConfiguration()
Constructs a document parser using the default symbol table and grammar pool or the ones specified by the application (through the properties). |
|
StandardParserConfiguration(SymbolTable symbolTable)
Constructs a document parser using the specified symbol table. |
|
StandardParserConfiguration(SymbolTable symbolTable,
GrammarPool grammarPool)
Constructs a document parser using the specified symbol table and grammar pool. |
Method Summary | |
protected void |
checkFeature(java.lang.String featureId)
Check a feature. |
protected void |
checkProperty(java.lang.String propertyId)
Check a property. |
protected void |
configurePipeline()
Configures the pipeline. |
protected DatatypeValidatorFactory |
createDatatypeValidatorFactory()
Create a datatype validator factory. |
protected org.apache.xerces.xni.parser.XMLDocumentScanner |
createDocumentScanner()
Create a document scanner. |
protected org.apache.xerces.xni.parser.XMLDTDScanner |
createDTDScanner()
Create a DTD scanner. |
protected XMLDTDValidator |
createDTDValidator()
Create a DTD validator. |
protected XMLEntityManager |
createEntityManager()
Creates an entity manager. |
protected XMLErrorReporter |
createErrorReporter()
Creates an error reporter. |
protected XMLNamespaceBinder |
createNamespaceBinder()
Create a namespace binder. |
boolean |
parse(boolean complete)
Parses the document in a pull parsing fashion. |
void |
parse(org.apache.xerces.xni.parser.XMLInputSource source)
Parses the specified input source. |
protected void |
reset()
Reset all components before parsing. |
void |
setInputSource(org.apache.xerces.xni.parser.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 |
addComponent,
addRecognizedFeatures,
addRecognizedProperties,
getEntityResolver,
getErrorHandler,
getFeature,
getProperty,
setDocumentHandler,
setDTDContentModelHandler,
setDTDHandler,
setEntityResolver,
setErrorHandler,
setFeature,
setProperty |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Field Detail |
protected static final java.lang.String WARN_ON_DUPLICATE_ATTDEF
protected static final java.lang.String WARN_ON_UNDECLARED_ELEMDEF
protected static final java.lang.String ALLOW_JAVA_ENCODINGS
protected static final java.lang.String CONTINUE_AFTER_FATAL_ERROR
protected static final java.lang.String LOAD_EXTERNAL_DTD
protected static final java.lang.String NOTIFY_BUILTIN_REFS
protected static final java.lang.String NOTIFY_CHAR_REFS
protected static final java.lang.String ERROR_REPORTER
protected static final java.lang.String ENTITY_MANAGER
protected static final java.lang.String DOCUMENT_SCANNER
protected static final java.lang.String DTD_SCANNER
protected static final java.lang.String GRAMMAR_POOL
protected static final java.lang.String DTD_VALIDATOR
protected static final java.lang.String NAMESPACE_BINDER
protected static final java.lang.String DATATYPE_VALIDATOR_FACTORY
protected GrammarPool fGrammarPool
protected DatatypeValidatorFactory fDatatypeValidatorFactory
protected XMLErrorReporter fErrorReporter
protected XMLEntityManager fEntityManager
protected org.apache.xerces.xni.parser.XMLDocumentScanner fScanner
protected org.apache.xerces.xni.parser.XMLDTDScanner fDTDScanner
protected XMLDTDValidator fDTDValidator
protected XMLNamespaceBinder fNamespaceBinder
protected org.apache.xerces.xni.XMLLocator fLocator
protected boolean fParseInProgress
Constructor Detail |
public StandardParserConfiguration()
public StandardParserConfiguration(SymbolTable symbolTable)
public StandardParserConfiguration(SymbolTable symbolTable, GrammarPool grammarPool)
Method Detail |
public void setLocale(java.util.Locale locale) throws org.apache.xerces.xni.XNIException
locale
- The locale object to use for localization of messages.public void setInputSource(org.apache.xerces.xni.parser.XMLInputSource inputSource) throws org.apache.xerces.xni.parser.XMLConfigurationException, java.io.IOException
inputSource
- The document's input source.parse(boolean)
public boolean parse(boolean complete) throws org.apache.xerces.xni.XNIException, java.io.IOException
complete
- True if the pull parser should parse the
remaining document completely.setInputSource(org.apache.xerces.xni.parser.XMLInputSource)
public void parse(org.apache.xerces.xni.parser.XMLInputSource source) throws org.apache.xerces.xni.XNIException, java.io.IOException
source
- The input source.protected void reset() throws org.apache.xerces.xni.XNIException
protected void configurePipeline()
protected void checkFeature(java.lang.String featureId) throws org.apache.xerces.xni.parser.XMLConfigurationException
featureId
- The unique identifier (URI) of the feature.protected void checkProperty(java.lang.String propertyId) throws org.apache.xerces.xni.parser.XMLConfigurationException
propertyId
- The unique identifier (URI) of the property
being set.protected XMLEntityManager createEntityManager()
protected XMLErrorReporter createErrorReporter()
protected org.apache.xerces.xni.parser.XMLDocumentScanner createDocumentScanner()
protected org.apache.xerces.xni.parser.XMLDTDScanner createDTDScanner()
protected XMLDTDValidator createDTDValidator()
protected XMLNamespaceBinder createNamespaceBinder()
protected DatatypeValidatorFactory createDatatypeValidatorFactory()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |