endElement(namespaceURI: String; localName: String; qualifiedName: String);
The endElement event method of the JadeXMLParser class receives notification of the end of an element. The endElement event method parameters are listed in the following table.
Parameter | Description |
---|---|
namespaceURI | Namespace URI or null ("") if the element has no namespace URI |
localName | Local name (without the prefix) |
qualifiedName | Qualified name (with the prefix) |
The parser invokes this event method (if implemented) at the end of every element in the XML document.
There is a corresponding startElement event method for each endElement event, even when the element is empty.