org.apache.xalan.processor
public class ProcessorCharacters extends XSLTElementProcessor
See Also: XSLT DTD
section-Creating-the-Result-Tree in XSLT Specification
Method Summary | |
---|---|
void | characters(StylesheetHandler handler, char[] ch, int start, int length)
Receive notification of character data inside an element.
|
void | endElement(StylesheetHandler handler, String uri, String localName, String rawName)
Receive notification of the end of an element.
|
void | startNonText(StylesheetHandler handler)
Receive notification of the start of the non-text event. |
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: org.xml.sax.ContentHandler#characters
Parameters: handler The calling StylesheetHandler/TemplatesBuilder. uri The Namespace URI, or the empty string if the element has no Namespace URI or if Namespace processing is not being performed. localName The local name (without prefix), or the empty string if Namespace processing is not being performed. rawName The raw XML 1.0 name (with prefix), or the empty string if raw names are not available.
See Also: StylesheetHandler StylesheetHandler org.xml.sax.ContentHandler#startElement org.xml.sax.ContentHandler#endElement org.xml.sax.Attributes
Parameters: handler non-null reference to current StylesheetHandler that is constructing the Templates.