Syntax

Invoked when the XML parser detects the end of an element.

Procedure

PROCEDURE EndElement:
  DEFINE INPUT PARAMETER namespaceURI AS CHARACTER.
  DEFINE INPUT PARAMETER localName    AS CHARACTER.
  DEFINE INPUT PARAMETER qName        AS CHARACTER.
  ...
END PROCEDURE.

Method

METHOD PUBLIC VOID EndElement(INPUT namespaceURI AS CHARACTER,
                              INPUT localName    AS CHARACTER,
                              INPUT qName       AS CHARACTER): 
  ... 
END METHOD.
namespaceURI
A CHARACTER string indicating the namespace URI of the element. If namespace processing is not enabled, or the element is not part of a namespace, the string is of length zero.
localName
A CHARACTER string indicating the nonprefixed element name. If namespace processing is not enabled, the string is of length zero.
qName
A CHARACTER string indicating the actual name of the element in the XML source. If the name has a prefix, qName includes it, whether or not namespace processing is enabled.

This callback corresponds to a preceding StartElement after all element content is reported.