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 org.apache.xerces.xni.parser.XMLDTDScanner | fDTDScannerDTD scanner. |
protected org.apache.xerces.impl.validation.ValidationManager | fValidationManagerValidation manager . |
protected boolean | fScanningDTDScanning DTD. |
protected String | fDoctypeNameDoctype name. |
protected String | fDoctypePublicIdDoctype declaration public identifier. |
protected String | fDoctypeSystemIdDoctype declaration system identifier. |
protected org.apache.xerces.xni.NamespaceContext | fNamespaceContextNamespace support. |
protected boolean | fLoadExternalDTDLoad external DTD. |
protected boolean | fDisallowDoctypeDisallow doctype declaration. |
protected boolean | fSeenDoctypeDeclSeen doctype declaration. |
protected final Dispatcher | fXMLDeclDispatcherXML declaration dispatcher. |
protected final Dispatcher | fPrologDispatcherProlog dispatcher. |
protected final Dispatcher | fDTDDispatcherDTD dispatcher. |
protected final Dispatcher | fTrailingMiscDispatcherTrailing miscellaneous section dispatcher. |
private final String[] | fStringsArray of 3 strings. |
private final org.apache.xerces.xni.XMLString | fStringString. |
private final org.apache.xerces.util.XMLStringBuffer | fStringBufferString buffer. |
private org.apache.xerces.xni.parser.XMLInputSource | fExternalSubsetSourceExternal subset source. |
private final org.apache.xerces.impl.dtd.XMLDTDDescription | fDTDDescriptionA DTD Description. |