Package net.sf.saxon.event
Class ContentHandlerProxy
java.lang.Object
net.sf.saxon.event.ContentHandlerProxy
- Direct Known Subclasses:
- TypedContentHandler
A ContentHandlerProxy is a Receiver that converts events into the form expected by an
 underlying SAX2 ContentHandler. Relevant events (notably comments) can also be
 fed to a LexicalHandler.
 
Note that in general the output passed to a Receiver corresponds to an External General Parsed Entity. A SAX2 ContentHandler only expects to deal with well-formed XML documents, so we only pass it the contents of the first element encountered, unless the saxon:require-well-formed output property is set to "no".
This ContentHandlerProxy provides no access to type information. For a ContentHandler that
 makes type information available, see TypedContentHandler
The ContentHandlerProxy can also be nominated as a TraceListener, to receive notification of trace events.
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic classCreate a TraceListener that will collect information about the current location in the source document.
- 
Field SummaryFieldsFields inherited from interface javax.xml.transform.ResultPI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidcharacters(UnicodeString chars, Location locationId, int properties) Character datavoidclose()Notify the end of the event streamvoidcomment(UnicodeString chars, Location locationId, int properties) Output a comment.voidNotify the end of the documentvoidEnd of elementGet the Saxon configurationGet the current location identifierGet the pipeline configurationGet the System ID of the destination treeGet the associated TraceListener that receives notification of trace eventsGet the underlying content handlerbooleanAsk whether the content handler can handle a stream of events that is merely well-balanced, or whether it can only handle a well-formed sequence.booleanAsk whether namespace undeclaration events (for a non-null prefix) should be notified.static ReceivermakeInstance(ContentHandler handler, Properties serializationProps) Public Factory method (bug 6036).protected voidThe following method is called when it is found that the output is not a well-formed document.voidopen()Notify the start of the event streamvoidprocessingInstruction(String target, UnicodeString data, Location locationId, int properties) Processing InstructionvoidsetLexicalHandler(LexicalHandler handler) Set the Lexical Handler to be used.voidsetOutputProperties(Properties details) Set the output details.voidSet the pipeline configurationvoidsetRequireWellFormed(boolean wellFormed) Set whether the content handler can handle a stream of events that is merely well-balanced, or whether it can only handle a well-formed sequence.voidsetSystemId(String systemId) Set the System ID of the destination treevoidsetUndeclareNamespaces(boolean undeclareNamespaces) Set whether namespace undeclaration events (for a non-null prefix) should be notified.voidSet the underlying content handler.voidsetUnparsedEntity(String name, String systemID, String publicID) Notify an unparsed entity URI.voidstartDocument(int properties) Notify the start of the document.voidstartElement(NodeName elemName, SchemaType type, AttributeMap attributes, NamespaceMap namespaces, Location location, int properties) Notify the start of an elementbooleanAsk whether this Receiver (or the downstream pipeline) makes any use of the type annotations supplied on element and attribute eventsMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.sf.saxon.event.Receiverappend, append, handlesAppend
- 
Field Details- 
handler
- 
lexicalHandler
 
- 
- 
Constructor Details- 
ContentHandlerProxyPrivate constructor (bug 6036)
 
- 
- 
Method Details- 
makeInstancePublic Factory method (bug 6036). This not only creates a ContentHandlerProxy, it also front-ends it with a NamespaceDifferencer to ensure that the namespace maps received by the ContentHandlerProxy represent the differences between the namespaces present on a child element and those present on its parent- Parameters:
- handler- the SAX content handler to which all events will be directed
 
- 
setUnderlyingContentHandlerSet the underlying content handler. This call is mandatory before using this Receiver. If the content handler is an instance ofLexicalHandler, then it will also receive notification of lexical events such as comments.- Parameters:
- handler- the SAX content handler to which all events will be directed
 
- 
getUnderlyingContentHandlerGet the underlying content handler- Returns:
- the SAX content handler to which all events are being directed
 
- 
setLexicalHandlerSet the Lexical Handler to be used. If called, this must be called AFTER setUnderlyingContentHandler()- Parameters:
- handler- the SAX lexical handler to which lexical events (such as comments) will be notified.
 
- 
setPipelineConfigurationSet the pipeline configuration- Specified by:
- setPipelineConfigurationin interface- Receiver
- Parameters:
- pipe- the pipeline configuration
 
- 
getPipelineConfigurationGet the pipeline configuration- Specified by:
- getPipelineConfigurationin interface- Receiver
- Returns:
- the pipeline configuration
 
- 
getConfigurationGet the Saxon configuration- Returns:
- the Saxon configuration
 
- 
setSystemIdSet the System ID of the destination tree- Specified by:
- setSystemIdin interface- Result
- Parameters:
- systemId- the system ID (effectively the base URI)
 
- 
getSystemIdGet the System ID of the destination tree- Specified by:
- getSystemIdin interface- Result
- Returns:
- the system ID (effectively the base URI)
 
- 
getTraceListenerGet the associated TraceListener that receives notification of trace events- Returns:
- the trace listener. If there is no existing trace listener, then a new one will be created.
 
- 
getCurrentLocationGet the current location identifier- Returns:
- the location identifier of the most recent event.
 
- 
setUnparsedEntityNotify an unparsed entity URI.- Specified by:
- setUnparsedEntityin interface- Receiver
- Parameters:
- name- The name of the unparsed entity
- systemID- The system identifier of the unparsed entity
- publicID- The public identifier of the unparsed entity
- Throws:
- XPathException- if an error occurs
 
- 
setOutputPropertiesSet the output details.- Parameters:
- details- the serialization properties. The only values used by this implementation are- SaxonOutputKeys.REQUIRE_WELL_FORMEDand- SaxonOutputKeys.UNDECLARE_PREFIXES.
 
- 
isRequireWellFormedpublic boolean isRequireWellFormed()Ask whether the content handler can handle a stream of events that is merely well-balanced, or whether it can only handle a well-formed sequence.- Returns:
- true if the content handler requires the event stream to represent a well-formed XML document (containing exactly one top-level element node and no top-level text nodes)
 
- 
setRequireWellFormedpublic void setRequireWellFormed(boolean wellFormed) Set whether the content handler can handle a stream of events that is merely well-balanced, or whether it can only handle a well-formed sequence. The default is false.- Parameters:
- wellFormed- set to true if the content handler requires the event stream to represent a well-formed XML document (containing exactly one top-level element node and no top-level text nodes). Otherwise, multiple top-level elements and text nodes are allowed, as in the XDM model.
 
- 
isUndeclareNamespacespublic boolean isUndeclareNamespaces()Ask whether namespace undeclaration events (for a non-null prefix) should be notified. The default is no, because some ContentHandlers (e.g. JDOM) can't cope with them.- Returns:
- true if namespace undeclarations (xmlns:p="") are to be output
 
- 
setUndeclareNamespacespublic void setUndeclareNamespaces(boolean undeclareNamespaces) Set whether namespace undeclaration events (for a non-null prefix) should be notified. The default is no, because some ContentHandlers (e.g. JDOM) can't cope with them.- Parameters:
- undeclareNamespaces- true if namespace undeclarations (xmlns:p="") are to be output
 
- 
openNotify the start of the event stream- Specified by:
- openin interface- Receiver
- Throws:
- XPathException- if an error occurs
 
- 
closeNotify the end of the event stream- Specified by:
- closein interface- Receiver
- Throws:
- XPathException- if an error occurs
 
- 
startDocumentNotify the start of the document.- Specified by:
- startDocumentin interface- Receiver
- Parameters:
- properties- not used
- Throws:
- XPathException- if an error occurs
 
- 
endDocumentNotify the end of the document- Specified by:
- endDocumentin interface- Receiver
- Throws:
- XPathException- if an error occurs
 
- 
startElementpublic void startElement(NodeName elemName, SchemaType type, AttributeMap attributes, NamespaceMap namespaces, Location location, int properties) throws XPathException Notify the start of an element- Specified by:
- startElementin interface- Receiver
- Parameters:
- elemName- the name of the element.
- type- the type annotation of the element.
- attributes- the attributes of this element
- namespaces- the in-scope namespaces of this element: generally this is all the in-scope namespaces, without relying on inheriting namespaces from parent elements
- location- an object providing information about the module, line, and column where the node originated
- properties- bit-significant properties of the element node. If there are no relevant properties, zero is supplied. The definitions of the bits are in class- ReceiverOption
- Throws:
- XPathException- if an error occurs
 
- 
endElementEnd of element- Specified by:
- endElementin interface- Receiver
- Throws:
- XPathException- if an error occurs
 
- 
characterspublic void characters(UnicodeString chars, Location locationId, int properties) throws XPathException Character data- Specified by:
- charactersin interface- Receiver
- Parameters:
- chars- The characters
- locationId- provides information such as line number and system ID.
- properties- Bit significant value. The following bits are defined:- DISABLE_ESCAPING
- Disable escaping for this text node
- USE_CDATA
- Output as a CDATA section
 
- Throws:
- XPathException- if an error occurs
 
- 
notifyNotWellFormedThe following method is called when it is found that the output is not a well-formed document. Unless the ContentHandler accepts "balanced content", this is a fatal error.- Throws:
- XPathException- unconditionally
 
- 
processingInstructionpublic void processingInstruction(String target, UnicodeString data, Location locationId, int properties) throws XPathException Processing Instruction- Specified by:
- processingInstructionin interface- Receiver
- Parameters:
- target- The PI name. This must be a legal name (it will not be checked).
- data- The data portion of the processing instruction
- locationId- provides information such as line number and system ID.
- properties- Additional information about the PI.
- Throws:
- XPathException- if an error occurs
 
- 
commentOutput a comment. Passes it on to the ContentHandler provided that the ContentHandler is also a SAX2 LexicalHandler.- Specified by:
- commentin interface- Receiver
- Parameters:
- chars- The content of the comment
- locationId- provides information such as line number and system ID.
- properties- Additional information about the comment.
- Throws:
- XPathException- if an error occurs
 
- 
usesTypeAnnotationspublic boolean usesTypeAnnotations()Ask whether this Receiver (or the downstream pipeline) makes any use of the type annotations supplied on element and attribute events- Specified by:
- usesTypeAnnotationsin interface- Receiver
- Returns:
- true if the Receiver makes any use of this information. If false, the caller may supply untyped nodes instead of supplying the type annotation
 
 
-