WRITE-EMPTY-ELEMENT( ) method
Return type:
Applies to:
WRITE-EMPTY-ELEMENT ( name , namespace-URI , SAX-attributes-handle )A CHARACTER or LONGCHAR expression evaluating to the fully qualified or unqualified name of the element.A CHARACTER or LONGCHAR expression evaluating to the URI of the element, or an empty string ("") or the Unknown value (?) if the element doesn’t contain a namespace.A HANDLE to a SAX-attributes object. The attributes in the SAX-attributes object are added to the new empty XML element.If namespace-URI is present, then the prefix is resolved in the following order:If the name contains a prefix, namespace-URI is present, and this is the first instance of the namespace-URI then the namespace is added to the element. This is equivalent to calling the DECLARE-NAMESPACE method.If only the name is present and it contains a prefix, then the SAX-writer attempts to resolve the prefix to a namespace.Although this method call appears to be logically equivalent to a START-ELEMENT invocation directly followed by its corresponding END-ELEMENT invocation, the two techniques produce different outputs. The START-ELEMENT and END-ELEMENT methods produce a pair of tags; <element></element>. WRITE-EMPTY-ELEMENT produces the empty element tag; <element/>.If the SAX-attributes-handle is supplied, the attributes will be written after the name of the element, in the order that they are indexed in the SAX-attributes object. If they contain namespace information, then that information will be handled as if the attribute were added using INSERT-ATTRIBUTE( ) method.If STRICT is TRUE, FRAGMENT is FALSE, and the invocation would result in more than one document-level element, (that is, root node), then the method fails.
© 2013 Progress Software Corporation and/or its subsidiaries or affiliates. |