-
- All Superinterfaces:
org.xml.sax.ContentHandler
- All Known Subinterfaces:
FastInfosetWriter
- All Known Implementing Classes:
SAXDocumentSerializer
,SAXDocumentSerializerWithPrefixMapping
public interface ExtendedContentHandler extends org.xml.sax.ContentHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
characters(char[] ch, int start, int length, boolean index)
Receive notification of character data.
-
-
-
Method Detail
-
characters
void characters(char[] ch, int start, int length, boolean index) throws org.xml.sax.SAXException
Receive notification of character data.- Parameters:
ch
- the characters from the XML documentstart
- the start position in the arraylength
- the number of characters to read from the arrayindex
- true if the characters are indexed, otherwise false.- Throws:
org.xml.sax.SAXException
- any SAX exception, possibly wrapping another exception- See Also:
ContentHandler.characters(char[], int, int)
-
-