Top | ![]() |
![]() |
![]() |
![]() |
Basic information for a XML document's namespaces and applied to a given GXmlNode.
Namespace management is a matter of this or other libraries, implementing this interfaces.
gchar *
gxml_namespace_get_uri (GXmlNamespace *self
);
Get and return the current value of the "uri" property.
Read-only property to get namespace's URI.
gchar *
gxml_namespace_get_prefix (GXmlNamespace *self
);
Get and return the current value of the "prefix" property.
Read-only property to get namespace's prefix.
Prefix should be added to GXmlElement or GXmlAttribute name in order to apply a given namespace, unless it is the default.
typedef struct _GXmlNamespace GXmlNamespace;
Interface to handle XML Namespaces.
Basic information for a XML document's namespaces and applied to a given GXmlNode.
Namespace management is a matter of this or other libraries, implementing this interfaces.
struct GXmlNamespaceIface { GTypeInterface parent_iface; gchar* (*get_uri) (GXmlNamespace* self); gchar* (*get_prefix) (GXmlNamespace* self); };
Interface for creating GXmlNamespace implementations.