Fields Summary |
---|
protected static final int | SCANNER_STATE_XML_DECLScanner state: XML declaration. |
protected static final int | SCANNER_STATE_PROLOGScanner state: prolog. |
protected static final int | SCANNER_STATE_TRAILING_MISCScanner state: trailing misc. |
protected static final int | SCANNER_STATE_DTD_INTERNAL_DECLSScanner state: DTD internal declarations. |
protected static final int | SCANNER_STATE_DTD_EXTERNALScanner state: open DTD external subset. |
protected static final int | SCANNER_STATE_DTD_EXTERNAL_DECLSScanner state: DTD external declarations. |
protected static final String | LOAD_EXTERNAL_DTDFeature identifier: load external DTD. |
protected static final String | DISALLOW_DOCTYPE_DECL_FEATUREFeature identifier: load external DTD. |
protected static final String | DTD_SCANNERProperty identifier: DTD scanner. |
protected static final String | VALIDATION_MANAGERproperty identifier: ValidationManager |
protected static final String | NAMESPACE_CONTEXTproperty identifier: NamespaceContext |
private static final String[] | RECOGNIZED_FEATURESRecognized features. |
private static final Boolean[] | FEATURE_DEFAULTSFeature defaults. |
private static final String[] | RECOGNIZED_PROPERTIESRecognized properties. |
private static final Object[] | PROPERTY_DEFAULTSProperty defaults. |
protected XMLDTDScanner | fDTDScannerDTD scanner. |
protected ValidationManager | fValidationManagerValidation manager . |
protected boolean | fScanningDTDScanning DTD. |
protected String | fDoctypeNameDoctype name. |
protected String | fDoctypePublicIdDoctype declaration public identifier. |
protected String | fDoctypeSystemIdDoctype declaration system identifier. |
protected NamespaceContext | fNamespaceContextNamespace support. |
protected boolean | fLoadExternalDTDLoad external DTD. |
protected boolean | fDisallowDoctypeDisallow doctype declaration. |
protected boolean | fSeenDoctypeDeclSeen doctype declaration. |
protected Dispatcher | fXMLDeclDispatcherXML declaration dispatcher. |
protected Dispatcher | fPrologDispatcherProlog dispatcher. |
protected Dispatcher | fDTDDispatcherDTD dispatcher. |
protected Dispatcher | fTrailingMiscDispatcherTrailing miscellaneous section dispatcher. |
private String[] | fStringsArray of 3 strings. |
private XMLString | fStringString. |
private XMLStringBuffer | fStringBufferString buffer. |
private XMLInputSource | fExternalSubsetSourceExternal subset source. |