Class ProcessorCharacters

    • Constructor Detail

      • ProcessorCharacters

        public ProcessorCharacters()
    • Method Detail

      • startNonText

        public void startNonText​(StylesheetHandler handler)
                          throws org.xml.sax.SAXException
        Receive notification of the start of the non-text event. This is sent to the current processor when any non-text event occurs.
        Overrides:
        startNonText in class XSLTElementProcessor
        Parameters:
        handler - non-null reference to current StylesheetHandler that is constructing the Templates.
        Throws:
        org.xml.sax.SAXException
      • characters

        public void characters​(StylesheetHandler handler,
                               char[] ch,
                               int start,
                               int length)
                        throws org.xml.sax.SAXException
        Receive notification of character data inside an element.
        Overrides:
        characters in class XSLTElementProcessor
        Parameters:
        handler - non-null reference to current StylesheetHandler that is constructing the Templates.
        ch - The characters.
        start - The start position in the character array.
        length - The number of characters to use from the character array.
        Throws:
        org.xml.sax.SAXException - Any SAX exception, possibly wrapping another exception.
        See Also:
        ContentHandler.characters(char[], int, int)