Package net.sf.saxon.event
This package provides support for push pipeline processing based on the Receiver
interface
and its implementation classes. The classes are mainly for internal use, but are available for use in advanced
applications.
-
Interface Summary Interface Description CopyInformee A CopyInformee is an agent that receives extra information while a tree is being copied.FilterFactory Factory class to create a ProxyReceiver which filters events on a push pipelineReceiver Receiver: This interface represents a recipient of XML tree-walking (push) events.ReceiverWithOutputProperties Marker interface attached to aOutputter
that retains serialization properties (typically, a Receiver that forms part of the serialization pipeline). -
Class Summary Class Description Builder The abstract Builder class is responsible for taking a stream of SAX events and constructing a Document tree.BuilderMonitor A BuilderMonitor can be inserted into a pipeline immediately in front of a Builder.CheckSumFilter A filter to go on a Receiver pipeline and calculate a checksum of the data passing through the pipeline.CloseNotifier A receiver that performs specified actions when closedCommentStripper The CommentStripper class is a filter that removes all comments and processing instructions.ComplexContentOutputter This class is used for generating complex content, that is, the content of an element or document node.ContentHandlerProxy A ContentHandlerProxy is a Receiver that converts events into the form expected by an underlying SAX2 ContentHandler.ContentHandlerProxy.ContentHandlerProxyTraceListener Create a TraceListener that will collect information about the current location in the source document.ContentHandlerProxyLocator Implementation of the SAX Locator interface, used to supply location information to the ContentHandler.DocumentValidator DocumentValidator checks that a document is well-formed: specifically, that it contains a single element node child and no text node children.Event An event is an object representing one of the events that can be passed to a receiver: for example, a startElement, endElement, characters, or comment event.Event.Append Event representing an arbitrary item being sent to the event stream in composed form.Event.Comment Event representing a comment nodeEvent.EndDocument Event representing end of documentEvent.EndElement Event representing the end of an elementEvent.ProcessingInstruction Event representing a processing instruction nodeEvent.StartDocument Event representing start of documentEvent.StartElement Event representing the start of an element (including attributes or namespaces)Event.Text Event representing a text nodeEventBuffer AnEventBuffer
is a receiver of events that records the events in memory for subsequent replay.EventMonitor AnEventMonitor
is a filter that passes all events down the pipeline unchanged, keeping a note of whether any data has passed through the filter.EventSource An implementation of the JAXP Source class that supplies a document in the form of a stream of push events sent to a ReceiverIDFilter IDFilter is a ProxyReceiver that extracts the subtree of a document rooted at the element with a given ID value.IgnorableWhitespaceStripper The IgnorableWhitespaceStripper removes whitespace text nodes belonging to elements whose schema-defined type defines element-only contentLocationCopier A Receiver that can be inserted into an event pipeline to copy location information.NamePoolConverter This class is a filter that passes all Receiver events through unchanged, except that it changes namecodes to allow for the source and the destination using different NamePools.NamespaceDifferencer NamespaceDifferencer
is aProxyReceiver
responsible for removing duplicate namespace declarations.NamespaceReducer NamespaceReducer
is aProxyReceiver
responsible for removing duplicate namespace declarations.Outputter Outputter: This interface represents a recipient of XML tree-walking (push) events.OutputterEvent An outputter event is an object representing one of the events that can be passed to anOutputter
: for example, a startElement, attribute, namespace endElement, characters, or comment event.OutputterEvent.Append Event representing an arbitrary item being sent to the event stream in composed form.OutputterEvent.Attribute Event representing an attribute nodeOutputterEvent.Comment Event representing a comment nodeOutputterEvent.EndDocument Event representing end of documentOutputterEvent.EndElement Event representing the end of an elementOutputterEvent.Namespace Event representing a namespace nodeOutputterEvent.ProcessingInstruction Event representing a processing instruction nodeOutputterEvent.StartContent Event representing the start of element contentOutputterEvent.StartDocument Event representing start of documentOutputterEvent.StartElement Event representing the start of an element (including attributes or namespaces)OutputterEvent.Text Event representing a text nodeOutputterEventBuffer AnEventBuffer
is a receiver of events that records the events in memory for subsequent replay.PathMaintainer This class sits in a receiver (push) pipeline and maintains the current path.PIGrabber ThePIGrabber
class is aProxyReceiver
that looks forxml-stylesheet
processing instructions and tests whether they match specified criteria; for those that do, it creates aSource
object referring to the relevant stylesheetPipelineConfiguration A PipelineConfiguration sets options that apply to all the operations in a pipeline.ProxyOutputter ProxyReceiver A ProxyReceiver is an Receiver that filters data before passing it to another underlying Receiver.PushToReceiver ReceiverOption ReceiverOption defines a set of constants representing boolean flags, which can be used in calls to methods on the Receiver interface.ReceivingContentHandler ReceivingContentHandler is a glue class that provides a standard SAX ContentHandler interface to a Saxon Receiver.ReceivingContentHandler.LocalLocator An implementation of the SaxonLocation
interface that wraps the SAX Locator information.RegularSequenceChecker ARegularSequenceChecker
is a filter that can be inserted into a Receiver pipeline to check that the sequence of events passed in is a regular event sequence.RepairingContentHandler A RepairingContentHandler is a SAX filter that can be placed on the input pipeline in front of aReceivingContentHandler
for use in cases where the events supplied by the XML parser are not guaranteed to satisfy all the consistency constraints.Sender Sender is a helper class that sends events to a Receiver from any kind of Source objectSequenceCollector This receiver is used when writing a sequence of atomic values and nodes, that is, when xsl:variable is used with content and an "as" attribute.SequenceCopier Copies a sequence, supplied as a SequenceIterator, to a push pipeline, represented by a SequenceReceiverSequenceNormalizer Implement the "sequence normalization" logic as defined in the XSLT 3.0/XQuery 3.0 serialization spec.SequenceNormalizerWithItemSeparator Implement the "sequence normalization" logic as defined in the XSLT 3.0/XQuery 3.0 serialization spec.SequenceNormalizerWithSpaceSeparator Implement the "sequence normalization" logic as defined in the XSLT 3.0/XQuery 3.0 serialization spec, for the case where there is no item-separator.SequenceReceiver SequenceReceiver: this extension of the Receiver interface is used when processing a sequence constructor.SequenceWriter TheSequenceWriter
is used when writing a sequence of items, for example, whenxsl:variable
is used with content and an "as" attribute.SignificantItemDetector This receiver is inserted into the output pipeline whenever on-empty or on-non-empty is used (XSLT 3.0).Sink A Sink is a Receiver that discards all information passed to itSinkOutputter An Outputter that swallows (discards) all input supplied to itStreamWriterToReceiver This class implements the XmlStreamWriter interface, translating the events into Saxon Receiver events.Stripper TheStripper
class performs whitespace stripping according to the rules of the xsl:strip-space and xsl:preserve-space instructions.Stripper.StripRuleTarget TeeOutputter TeeOutputter: a SequenceReceiver that duplicates received events to two different destinationsTransformerReceiver TransformerReceiver is similar in concept to the JAXP TransformerHandler, except that it implements Saxon's Receiver interface rather than the standard SAX2 interface.TreeReceiver A TreeReceiver acts as a bridge between a SequenceReceiver, which can receive events for constructing any kind of sequence, and an ordinary Receiver, which only handles events relating to the building of trees.TypeCheckingFilter A filter on the push pipeline that performs type checking, both of the item type and the cardinality.Valve A Valve is a general-purpose component for use in a pipeline of receivers.WherePopulatedOutputter This class acts as a filter on a push pipeline, allowing through only those items that are deemed non-empty according to the rules of the xsl:where-populated instruction. -
Enum Summary Enum Description RegularSequenceChecker.State -
Exception Summary Exception Description CopyNamespaceSensitiveException Exception indicating that an attempt was made to copy namespace-sensitive content without copying its associated namespacesNoOpenStartTagException Exception indicating that an attribute or namespace node has been written when there is no open element to write it to