org.apache.xerces.parsers
public class IntegratedParserConfiguration extends StandardParserConfiguration
In addition to the features and properties recognized by the base parser configuration, this class recognizes these additional features and properties:
Version: $Id: IntegratedParserConfiguration.java,v 1.13 2004/02/24 23:15:57 mrglavas Exp $
| Field Summary | |
|---|---|
| protected XMLNSDocumentScannerImpl | fNamespaceScanner Document scanner that does namespace binding. |
| protected XMLDTDValidator | fNonNSDTDValidator DTD Validator that does not bind namespaces |
| protected XMLDocumentScannerImpl | fNonNSScanner Default Xerces implementation of scanner |
| Constructor Summary | |
|---|---|
| IntegratedParserConfiguration() Default constructor. | |
| IntegratedParserConfiguration(SymbolTable symbolTable)
Constructs a parser configuration using the specified symbol table.
| |
| IntegratedParserConfiguration(SymbolTable symbolTable, XMLGrammarPool grammarPool)
Constructs a parser configuration using the specified symbol table and
grammar pool.
| |
| IntegratedParserConfiguration(SymbolTable symbolTable, XMLGrammarPool grammarPool, XMLComponentManager parentSettings)
Constructs a parser configuration using the specified symbol table,
grammar pool, and parent settings.
| |
| Method Summary | |
|---|---|
| protected void | configurePipeline() Configures the pipeline. |
| protected XMLDocumentScanner | createDocumentScanner() Create a document scanner: this scanner performs namespace binding |
| protected XMLDTDValidator | createDTDValidator() Create a DTD validator: this validator performs namespace binding. |
Parameters: symbolTable The symbol table to use.
REVISIT: Grammar pool will be updated when the new validation engine is implemented.
Parameters: symbolTable The symbol table to use. grammarPool The grammar pool to use.
REVISIT: Grammar pool will be updated when the new validation engine is implemented.
Parameters: symbolTable The symbol table to use. grammarPool The grammar pool to use. parentSettings The parent settings.