public interface IDefaultXmlHandler
| Modifier and Type | Method and Description |
|---|---|
void |
characters(char[] ch,
int start,
int length)
Called when character data is encountered within an element.
|
void |
endElement(String uri,
String localName,
String qName)
Called when an end element is encountered in the XML document.
|
void |
startElement(String uri,
String localName,
String qName,
HashMap<String,String> attributes)
Called when a start element is encountered in the XML document.
|
void startElement(String uri, String localName, String qName, HashMap<String,String> attributes)
uri - the namespace URI of the elementlocalName - the local name of the elementqName - the qualified name of the elementattributes - a map of attributes associated with the elementvoid endElement(String uri, String localName, String qName)
uri - the namespace URI of the elementlocalName - the local name of the elementqName - the qualified name of the elementvoid characters(char[] ch,
int start,
int length)
ch - the character array containing the datastart - the start index of the data in the arraylength - the length of the dataCopyright © 1998–2025 Apryse Group NV. All rights reserved.