Fields Summary |
---|
protected static final String | XML11_DATATYPE_VALIDATOR_FACTORY |
protected static final String | VALIDATIONFeature identifier: validation. |
protected static final String | NAMESPACESFeature identifier: namespaces. |
protected static final String | EXTERNAL_GENERAL_ENTITIESFeature identifier: external general entities. |
protected static final String | EXTERNAL_PARAMETER_ENTITIESFeature identifier: external parameter entities. |
protected static final String | CONTINUE_AFTER_FATAL_ERRORFeature identifier: continue after fatal error. |
protected static final String | LOAD_EXTERNAL_DTDFeature identifier: load external DTD. |
protected static final String | XML_STRINGProperty identifier: xml string. |
protected static final String | SYMBOL_TABLEProperty identifier: symbol table. |
protected static final String | ERROR_HANDLERProperty identifier: error handler. |
protected static final String | ENTITY_RESOLVERProperty identifier: entity resolver. |
protected static final String | ERROR_REPORTERProperty identifier: error reporter. |
protected static final String | ENTITY_MANAGERProperty identifier: entity manager. |
protected static final String | DOCUMENT_SCANNERProperty identifier document scanner: |
protected static final String | DTD_SCANNERProperty identifier: DTD scanner. |
protected static final String | XMLGRAMMAR_POOLProperty identifier: grammar pool. |
protected static final String | DTD_PROCESSORProperty identifier: DTD loader. |
protected static final String | DTD_VALIDATORProperty identifier: DTD validator. |
protected static final String | NAMESPACE_BINDERProperty identifier: namespace binder. |
protected static final String | DATATYPE_VALIDATOR_FACTORYProperty identifier: datatype validator factory. |
protected static final String | VALIDATION_MANAGER |
protected static final String | JAXP_SCHEMA_LANGUAGEProperty identifier: JAXP schema language / DOM schema-type. |
protected static final String | JAXP_SCHEMA_SOURCEProperty identifier: JAXP schema source/ DOM schema-location. |
protected static final boolean | PRINT_EXCEPTION_STACK_TRACESet to true and recompile to print exception stack trace. |
protected SymbolTable | fSymbolTable |
protected XMLInputSource | fInputSource |
protected ValidationManager | fValidationManager |
protected XMLVersionDetector | fVersionDetector |
protected XMLLocator | fLocator |
protected Locale | fLocale |
protected ArrayList | fComponentsXML 1.0 Components. |
protected ArrayList | fXML11ComponentsXML 1.1. Components. |
protected ArrayList | fCommonComponentsCommon components: XMLEntityManager, XMLErrorReporter |
protected XMLDocumentHandler | fDocumentHandlerThe document handler. |
protected XMLDTDHandler | fDTDHandlerThe DTD handler. |
protected XMLDTDContentModelHandler | fDTDContentModelHandlerThe DTD content model handler. |
protected XMLDocumentSource | fLastComponentLast component in the document pipeline |
protected boolean | fParseInProgressTrue if a parse is in progress. This state is needed because
some features/properties cannot be set while parsing (e.g.
validation and namespaces). |
protected boolean | fConfigUpdatedfConfigUpdated is set to true if there has been any change to the configuration settings,
i.e a feature or a property was changed. |
protected DTDDVFactory | fDatatypeValidatorFactoryThe XML 1.0 Datatype validator factory. |
protected XMLNSDocumentScannerImpl | fNamespaceScannerThe XML 1.0 Document scanner that does namespace binding. |
protected XMLDocumentScannerImpl | fNonNSScannerThe XML 1.0 Non-namespace implementation of scanner |
protected XMLDTDValidator | fDTDValidatorThe XML 1.0 DTD Validator: binds namespaces |
protected XMLDTDValidator | fNonNSDTDValidatorThe XML 1.0 DTD Validator that does not bind namespaces |
protected XMLDTDScanner | fDTDScannerThe XML 1.0 DTD scanner. |
protected XMLDTDProcessor | fDTDProcessorThe XML 1.0 DTD Processor . |
protected DTDDVFactory | fXML11DatatypeFactoryThe XML 1.1 datatype factory. |
protected XML11NSDocumentScannerImpl | fXML11NSDocScannerThe XML 1.1 document scanner that does namespace binding. |
protected XML11DocumentScannerImpl | fXML11DocScannerThe XML 1.1 document scanner that does not do namespace binding. |
protected XML11NSDTDValidator | fXML11NSDTDValidatorThe XML 1.1 DTD validator that does namespace binding. |
protected XML11DTDValidator | fXML11DTDValidatorThe XML 1.1 DTD validator that does not do namespace binding. |
protected XML11DTDScannerImpl | fXML11DTDScannerThe XML 1.1 DTD scanner. |
protected XML11DTDProcessor | fXML11DTDProcessorThe XML 1.1 DTD processor. |
protected XMLGrammarPool | fGrammarPoolGrammar pool. |
protected XMLErrorReporter | fErrorReporterError reporter. |
protected XMLEntityManager | fEntityManagerEntity manager. |
protected XMLDocumentScanner | fCurrentScannerCurrent scanner |
protected DTDDVFactory | fCurrentDVFactoryCurrent Datatype validator factory. |
protected XMLDTDScanner | fCurrentDTDScannerCurrent DTD scanner. |
private boolean | f11InitializedFlag indiciating whether XML11 components have been initialized. |