XPointerParserConfigurationpublic class XPointerParserConfiguration extends XML11Configuration This parser configuration includes an XPointerHandler in the pipeline
before the schema validator, or as the last component in the pipeline if there is
no schema validator. Using this pipeline will enable processing according to the
XML Inclusions specification with XPointers, to the conformance level described in
XPointerHandler. . |
Fields Summary |
---|
private XPointerHandler | fXPointerHandler | private XIncludeHandler | fXIncludeHandler | protected static final String | ALLOW_UE_AND_NOTATION_EVENTSFeature identifier: allow notation and unparsed entity events to be sent out of order. | protected static final String | XINCLUDE_FIXUP_BASE_URISFeature identifier: fixup base URIs. | protected static final String | XINCLUDE_FIXUP_LANGUAGEFeature identifier: fixup language. | protected static final String | XPOINTER_HANDLERProperty identifier: error reporter. | protected static final String | XINCLUDE_HANDLERProperty identifier: error reporter. | protected static final String | NAMESPACE_CONTEXTProperty identifier: error reporter. |
Constructors Summary |
---|
public XPointerParserConfiguration()Default constructor.
this(null, null, null);
| public XPointerParserConfiguration(SymbolTable symbolTable)Constructs a parser configuration using the specified symbol table.
this(symbolTable, null, null);
| public XPointerParserConfiguration(SymbolTable symbolTable, XMLGrammarPool grammarPool)Constructs a parser configuration using the specified symbol table and
grammar pool.
this(symbolTable, grammarPool, null);
| public XPointerParserConfiguration(SymbolTable symbolTable, XMLGrammarPool grammarPool, XMLComponentManager parentSettings)Constructs a parser configuration using the specified symbol table,
grammar pool, and parent settings.
super(symbolTable, grammarPool, parentSettings);
fXIncludeHandler = new XIncludeHandler();
addCommonComponent(fXIncludeHandler);
fXPointerHandler = new XPointerHandler();
addCommonComponent(fXPointerHandler);
final String[] recognizedFeatures = {
ALLOW_UE_AND_NOTATION_EVENTS,
XINCLUDE_FIXUP_BASE_URIS,
XINCLUDE_FIXUP_LANGUAGE
};
addRecognizedFeatures(recognizedFeatures);
// add default recognized properties
final String[] recognizedProperties =
{ XINCLUDE_HANDLER, XPOINTER_HANDLER, NAMESPACE_CONTEXT };
addRecognizedProperties(recognizedProperties);
setFeature(ALLOW_UE_AND_NOTATION_EVENTS, true);
setFeature(XINCLUDE_FIXUP_BASE_URIS, true);
setFeature(XINCLUDE_FIXUP_LANGUAGE, true);
setProperty(XINCLUDE_HANDLER, fXIncludeHandler);
setProperty(XPOINTER_HANDLER, fXPointerHandler);
setProperty(NAMESPACE_CONTEXT, new XIncludeNamespaceSupport());
|
Methods Summary |
---|
protected void | configurePipeline()Configures the pipeline.
super.configurePipeline();
//configure DTD pipeline
fDTDScanner.setDTDHandler(fDTDProcessor);
fDTDProcessor.setDTDSource(fDTDScanner);
fDTDProcessor.setDTDHandler(fXIncludeHandler);
fXIncludeHandler.setDTDSource(fDTDProcessor);
fXIncludeHandler.setDTDHandler(fXPointerHandler);
fXPointerHandler.setDTDSource(fXIncludeHandler);
fXPointerHandler.setDTDHandler(fDTDHandler);
if (fDTDHandler != null) {
fDTDHandler.setDTDSource(fXPointerHandler);
}
// configure XML document pipeline: insert after DTDValidator and
// before XML Schema validator
XMLDocumentSource prev = null;
if (fFeatures.get(XMLSCHEMA_VALIDATION) == Boolean.TRUE) {
// we don't have to worry about fSchemaValidator being null, since
// super.configurePipeline() instantiated it if the feature was set
prev = fSchemaValidator.getDocumentSource();
}
// Otherwise, insert after the last component in the pipeline
else {
prev = fLastComponent;
fLastComponent = fXPointerHandler;
}
XMLDocumentHandler next = prev.getDocumentHandler();
prev.setDocumentHandler(fXIncludeHandler);
fXIncludeHandler.setDocumentSource(prev);
if (next != null) {
fXIncludeHandler.setDocumentHandler(next);
next.setDocumentSource(fXIncludeHandler);
}
fXIncludeHandler.setDocumentHandler(fXPointerHandler);
fXPointerHandler.setDocumentSource(fXIncludeHandler);
| protected void | configureXML11Pipeline()
super.configureXML11Pipeline();
// configure XML 1.1. DTD pipeline
fXML11DTDScanner.setDTDHandler(fXML11DTDProcessor);
fXML11DTDProcessor.setDTDSource(fXML11DTDScanner);
fDTDProcessor.setDTDHandler(fXIncludeHandler);
fXIncludeHandler.setDTDSource(fXML11DTDProcessor);
fXIncludeHandler.setDTDHandler(fXPointerHandler);
fXPointerHandler.setDTDSource(fXIncludeHandler);
fXPointerHandler.setDTDHandler(fDTDHandler);
if (fDTDHandler != null) {
fDTDHandler.setDTDSource(fXPointerHandler);
}
// configure XML document pipeline: insert after DTDValidator and
// before XML Schema validator
XMLDocumentSource prev = null;
if (fFeatures.get(XMLSCHEMA_VALIDATION) == Boolean.TRUE) {
// we don't have to worry about fSchemaValidator being null, since
// super.configurePipeline() instantiated it if the feature was set
prev = fSchemaValidator.getDocumentSource();
}
// Otherwise, insert after the last component in the pipeline
else {
prev = fLastComponent;
fLastComponent = fXPointerHandler;
}
XMLDocumentHandler next = prev.getDocumentHandler();
prev.setDocumentHandler(fXIncludeHandler);
fXIncludeHandler.setDocumentSource(prev);
if (next != null) {
fXIncludeHandler.setDocumentHandler(next);
next.setDocumentSource(fXIncludeHandler);
}
fXIncludeHandler.setDocumentHandler(fXPointerHandler);
fXPointerHandler.setDocumentSource(fXIncludeHandler);
| public void | setProperty(java.lang.String propertyId, java.lang.Object value)
//if (propertyId.equals(XINCLUDE_HANDLER)) {
//}
super.setProperty(propertyId, value);
|
|