Top | ![]() |
![]() |
![]() |
![]() |
GXmlProcessingInstructionGXmlProcessingInstruction — Interface for XML Processing Instruction sections. |
gchar * | gxml_processing_instruction_get_target () |
gchar * | gxml_processing_instruction_get_data () |
void | gxml_processing_instruction_set_data () |
gchar *
gxml_processing_instruction_get_target
(GXmlProcessingInstruction *self
);
Get and return the current value of the "target" property.
The target for the processing instruction, like "xml-stylesheet".
gchar *
gxml_processing_instruction_get_data (GXmlProcessingInstruction *self
);
Get and return the current value of the "data" property.
The data used by the target, like
href="style.xsl" type="text/xml"
void gxml_processing_instruction_set_data (GXmlProcessingInstruction *self
,const gchar *value
);
Set the value of the "data" property to value
.
The data used by the target, like
href="style.xsl" type="text/xml"
self |
the GXmlProcessingInstruction instance to modify |
|
value |
the new value of the "data" property |
typedef struct _GXmlProcessingInstruction GXmlProcessingInstruction;
Interface for XML Processing Instruction sections.
struct GXmlProcessingInstructionIface { GTypeInterface parent_iface; gchar* (*get_target) (GXmlProcessingInstruction* self); gchar* (*get_data) (GXmlProcessingInstruction* self); void (*set_data) (GXmlProcessingInstruction* self, const gchar* value); };
Interface for creating GXmlProcessingInstruction implementations.