Class GlobalName

Package :
xml

This class represents a global name, ie one which has been created using XML namespaces. It has two parts, a local_name and a URI. The URI is &null if the global name is the same as the local name.

For example with the XML fragment

<SOAP-ENV:Envelope mlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"

the global name of the element would be the instance

GlobalName("Envelope", "http://schemas.xmlsoap.org/soap/envelope/")

Source

Class summary
Methods defined in this class
equals(other) get_local_name() get_uri() to_string()
Variables defined in this class
local_name uri

Method detail

equals(other)

Source

get_local_name()

Return the original tag local_name

Source

get_uri()

Return the URI obtained during namespace processing. For a global name which is just a local name, then this is &null.
Source

to_string()

Source

Variable detail

local_name


uri