GXmlText

GXmlText — Representation of text nodes in any GXmlNode

Functions

gchar * gxml_text_get_str ()
void gxml_text_set_str ()

Types and Values

Description

Functions

gxml_text_get_str ()

gchar *
gxml_text_get_str (GXmlText *self);

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

This should be implemented by returning "value"

Parameters

self

the GXmlText instance to query

 

Returns

the value of the "str" property


gxml_text_set_str ()

void
gxml_text_set_str (GXmlText *self,
                   const gchar *value);

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

This should be implemented by returning "value"

Parameters

self

the GXmlText instance to modify

 

value

the new value of the "str" property

 

Types and Values

GXmlText

typedef struct _GXmlText GXmlText;

Representation of text nodes in any GXmlNode


struct GXmlTextIface

struct GXmlTextIface {
	GTypeInterface parent_iface;
	gchar* (*get_str) (GXmlText* self);
	void (*set_str) (GXmlText* self, const gchar* value);
};

Interface for creating GXmlText implementations.

Members

GTypeInterface parent_iface;

the parent interface structure

 

get_str ()

getter method for the abstract property "str"

 

set_str ()

setter method for the abstract property "str"