Top | ![]() |
![]() |
![]() |
![]() |
gchar * | gxml_dom_character_data_substring_data () |
void | gxml_dom_character_data_append_data () |
void | gxml_dom_character_data_insert_data () |
void | gxml_dom_character_data_delete_data () |
void | gxml_dom_character_data_replace_data () |
gchar * | gxml_dom_character_data_get_data () |
void | gxml_dom_character_data_set_data () |
gulong | gxml_dom_character_data_get_length () |
GXmlDomText * | gxml_dom_text_split_text () |
gchar * | gxml_dom_text_get_whole_text () |
gchar * | gxml_dom_processing_instruction_get_target () |
gchar * gxml_dom_character_data_substring_data (GXmlDomCharacterData *self
,gulong offset
,gulong count
,GError **error
);
self |
the GXmlDomCharacterData instance |
|
offset |
|
|
count |
|
|
error |
location to store the error occuring, or |
void gxml_dom_character_data_append_data (GXmlDomCharacterData *self
,const gchar *data
);
void gxml_dom_character_data_insert_data (GXmlDomCharacterData *self
,gulong offset
,const gchar *data
,GError **error
);
self |
the GXmlDomCharacterData instance |
|
offset |
|
|
data |
|
|
error |
location to store the error occuring, or |
void gxml_dom_character_data_delete_data (GXmlDomCharacterData *self
,gulong offset
,gulong count
,GError **error
);
self |
the GXmlDomCharacterData instance |
|
offset |
|
|
count |
|
|
error |
location to store the error occuring, or |
void gxml_dom_character_data_replace_data (GXmlDomCharacterData *self
,gulong offset
,gulong count
,const gchar *data
,GError **error
);
self |
the GXmlDomCharacterData instance |
|
offset |
|
|
count |
|
|
data |
|
|
error |
location to store the error occuring, or |
gchar *
gxml_dom_character_data_get_data (GXmlDomCharacterData *self
);
Get and return the current value of the "data" property.
Null is an empty string.
void gxml_dom_character_data_set_data (GXmlDomCharacterData *self
,const gchar *value
);
Set the value of the "data" property to value
.
Null is an empty string.
self |
the GXmlDomCharacterData instance to modify |
|
value |
the new value of the "data" property |
gulong
gxml_dom_character_data_get_length (GXmlDomCharacterData *self
);
Get and return the current value of the "length" property.
GXmlDomText * gxml_dom_text_split_text (GXmlDomText *self
,gulong offset
,GError **error
);
self |
the GXmlDomText instance |
|
offset |
|
|
error |
location to store the error occuring, or |
gchar *
gxml_dom_text_get_whole_text (GXmlDomText *self
);
Get and return the current value of the "whole-text" property.
gchar *
gxml_dom_processing_instruction_get_target
(GXmlDomProcessingInstruction *self
);
Get and return the current value of the "target" property.
struct GXmlDomCharacterDataIface { GTypeInterface parent_iface; gchar* (*substring_data) (GXmlDomCharacterData* self, gulong offset, gulong count, GError** error); void (*append_data) (GXmlDomCharacterData* self, const gchar* data); void (*insert_data) (GXmlDomCharacterData* self, gulong offset, const gchar* data, GError** error); void (*delete_data) (GXmlDomCharacterData* self, gulong offset, gulong count, GError** error); void (*replace_data) (GXmlDomCharacterData* self, gulong offset, gulong count, const gchar* data, GError** error); gchar* (*get_data) (GXmlDomCharacterData* self); void (*set_data) (GXmlDomCharacterData* self, const gchar* value); gulong (*get_length) (GXmlDomCharacterData* self); };
Interface for creating GXmlDomCharacterData implementations.
the parent interface structure |
||
virtual method called by |
||
virtual method called by |
||
virtual method called by |
||
virtual method called by |
||
virtual method called by |
||
getter method for the abstract property "data" |
||
setter method for the abstract property "data" |
||
getter method for the abstract property "length" |
struct GXmlDomTextIface { GTypeInterface parent_iface; GXmlDomText* (*split_text) (GXmlDomText* self, gulong offset, GError** error); gchar* (*get_whole_text) (GXmlDomText* self); };
Interface for creating GXmlDomText implementations.
the parent interface structure |
||
virtual method called by |
||
getter method for the abstract property "whole-text" |
typedef struct _GXmlDomProcessingInstruction GXmlDomProcessingInstruction;
struct GXmlDomProcessingInstructionIface { GTypeInterface parent_iface; gchar* (*get_target) (GXmlDomProcessingInstruction* self); };
Interface for creating GXmlDomProcessingInstruction implementations.
struct GXmlDomCommentIface { GTypeInterface parent_iface; };
Interface for creating GXmlDomComment implementations.