GXmlDomAttr

GXmlDomAttr

Functions

Types and Values

Description

Functions

gxml_dom_attr_get_namespace_uri ()

gchar *
gxml_dom_attr_get_namespace_uri (GXmlDomAttr *self);

Get and return the current value of the "namespace-uri" property.

Parameters

self

the GXmlDomAttr instance to query

 

Returns

the value of the "namespace-uri" property


gxml_dom_attr_get_prefix ()

gchar *
gxml_dom_attr_get_prefix (GXmlDomAttr *self);

Get and return the current value of the "prefix" property.

Parameters

self

the GXmlDomAttr instance to query

 

Returns

the value of the "prefix" property


gxml_dom_attr_get_local_name ()

gchar *
gxml_dom_attr_get_local_name (GXmlDomAttr *self);

Get and return the current value of the "local-name" property.

Parameters

self

the GXmlDomAttr instance to query

 

Returns

the value of the "local-name" property


gxml_dom_attr_get_name ()

gchar *
gxml_dom_attr_get_name (GXmlDomAttr *self);

Get and return the current value of the "name" property.

Parameters

self

the GXmlDomAttr instance to query

 

Returns

the value of the "name" property


gxml_dom_attr_get_value ()

gchar *
gxml_dom_attr_get_value (GXmlDomAttr *self);

Get and return the current value of the "value" property.

Parameters

self

the GXmlDomAttr instance to query

 

Returns

the value of the "value" property


gxml_dom_attr_set_value ()

void
gxml_dom_attr_set_value (GXmlDomAttr *self,
                         const gchar *value);

Set the value of the "value" property to value .

Parameters

self

the GXmlDomAttr instance to modify

 

value

the new value of the "value" property

 

gxml_dom_attr_get_specified ()

gboolean
gxml_dom_attr_get_specified (GXmlDomAttr *self);

Get and return the current value of the "specified" property.

Parameters

self

the GXmlDomAttr instance to query

 

Returns

the value of the "specified" property

Types and Values

GXmlDomAttr

typedef struct _GXmlDomAttr GXmlDomAttr;

struct GXmlDomAttrIface

struct GXmlDomAttrIface {
	GTypeInterface parent_iface;
	gchar* (*get_namespace_uri) (GXmlDomAttr* self);
	gchar* (*get_prefix) (GXmlDomAttr* self);
	gchar* (*get_local_name) (GXmlDomAttr* self);
	gchar* (*get_name) (GXmlDomAttr* self);
	gchar* (*get_value) (GXmlDomAttr* self);
	void (*set_value) (GXmlDomAttr* self, const gchar* value);
	gboolean (*get_specified) (GXmlDomAttr* self);
};

Interface for creating GXmlDomAttr implementations.

Members

GTypeInterface parent_iface;

the parent interface structure

 

get_namespace_uri ()

getter method for the abstract property "namespace-uri"

 

get_prefix ()

getter method for the abstract property "prefix"

 

get_local_name ()

getter method for the abstract property "local-name"

 

get_name ()

getter method for the abstract property "name"

 

get_value ()

getter method for the abstract property "value"

 

set_value ()

setter method for the abstract property "value"

 

get_specified ()

getter method for the abstract property "specified"