Class SequenceReceiver

    • Field Detail

      • previousAtomic

        protected boolean previousAtomic
      • systemId

        protected java.lang.String systemId
    • Constructor Detail

      • SequenceReceiver

        public SequenceReceiver​(PipelineConfiguration pipe)
        Create a SequenceReceiver
        Parameters:
        pipe - the pipeline configuration
    • Method Detail

      • setPipelineConfiguration

        public void setPipelineConfiguration​(PipelineConfiguration pipelineConfiguration)
        Description copied from interface: Receiver
        Set the pipeline configuration
        Specified by:
        setPipelineConfiguration in interface Receiver
        Parameters:
        pipelineConfiguration - the pipeline configuration
      • getConfiguration

        public final Configuration getConfiguration()
        Get the Saxon Configuration
        Returns:
        the Configuration
      • setSystemId

        public void setSystemId​(java.lang.String systemId)
        Set the system ID
        Specified by:
        setSystemId in interface javax.xml.transform.Result
        Parameters:
        systemId - the URI used to identify the tree being passed across this interface
      • getSystemId

        public java.lang.String getSystemId()
        Get the system ID
        Specified by:
        getSystemId in interface javax.xml.transform.Result
        Returns:
        the system ID that was supplied using the setSystemId() method
      • setUnparsedEntity

        public void setUnparsedEntity​(java.lang.String name,
                                      java.lang.String systemID,
                                      java.lang.String publicID)
                               throws XPathException
        Notify an unparsed entity URI.
        Specified by:
        setUnparsedEntity in 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
      • append

        public abstract void append​(Item item,
                                    Location locationId,
                                    int properties)
                             throws XPathException
        Append an arbitrary item (node, atomic value, or function) to the output
        Specified by:
        append in interface Receiver
        Parameters:
        item - the item to be appended
        locationId - the location of the calling instruction, for diagnostics
        properties - if the item is an element node, this indicates whether its namespaces need to be copied. Values are ReceiverOption.ALL_NAMESPACES; the default (0) means
        Throws:
        XPathException - if an error occurs
      • append

        public void append​(Item item)
                    throws XPathException
        Append an arbitrary item (node, atomic value, or function) to the output. By default, if the item is an element node, it is copied with all namespaces.
        Specified by:
        append in interface Receiver
        Parameters:
        item - the item to be appended
        Throws:
        XPathException - if the operation fails
      • getNamePool

        public NamePool getNamePool()
        Get the name pool
        Returns:
        the Name Pool that was supplied using the setConfiguration() method
      • flatten

        protected void flatten​(ArrayItem array,
                               Location locationId,
                               int copyNamespaces)
                        throws XPathException
        Helper method for subclasses to invoke if required: flatten an array. The effect is that each item in each member of the array is appended to this SequenceReceiver by calling its method
        Parameters:
        array - the array to be flattened
        locationId - the location of the instruction triggering this operation
        copyNamespaces - options for copying namespace nodes
        Throws:
        XPathException - if things go wrong
      • decompose

        protected void decompose​(Item item,
                                 Location locationId,
                                 int copyNamespaces)
                          throws XPathException
        Helper method for subclasses to invoke if required: decompose an item into a sequence of node events. Note that when this is used, methods such as characters(), comment(), startElement(), and processingInstruction() are responsible for setting previousAtomic to false.
        Parameters:
        item - the item to be decomposed (that is, to be delivered to this SequenceReceiver as a sequence of separate events
        locationId - the location of the originating instruction
        copyNamespaces - options for copying namespace nodes
        Throws:
        XPathException - if things go wrong
      • getErrorCodeForDecomposingFunctionItems

        protected java.lang.String getErrorCodeForDecomposingFunctionItems()