Gladeui.XmlNode¶
Fields¶
None
Methods¶
| class | new(context, name) | 
| class | new_comment(context, comment) | 
| add_next_sibling(new_node) | |
| add_prev_sibling(new_node) | |
| append_child(child) | |
| copy() | |
| delete() | |
| get_children() | |
| get_children_with_comments() | |
| get_name() | |
| get_parent() | |
| is_comment() | |
| next() | |
| next_with_comments() | |
| prev_with_comments() | |
| remove() | |
| set_property_boolean(name, value) | |
| set_property_string(name, string) | |
| verify(name) | |
| verify_silent(name) | 
Details¶
- 
class Gladeui.XmlNode¶
- 
classmethod new(context, name)¶
- Parameters: - context (Gladeui.XmlContext) –
- name (str) –
 - Return type: 
- context (
 - 
classmethod new_comment(context, comment)¶
- Parameters: - context (Gladeui.XmlContext) –
- comment (str) –
 - Return type: 
- context (
 - 
add_next_sibling(new_node)¶
- Parameters: - new_node ( - Gladeui.XmlNode) –- Return type: - Gladeui.XmlNode
 - 
add_prev_sibling(new_node)¶
- Parameters: - new_node ( - Gladeui.XmlNode) –- Return type: - Gladeui.XmlNode
 - 
append_child(child)¶
- Parameters: - child ( - Gladeui.XmlNode) –
 - 
copy()¶
- Return type: - Gladeui.XmlNode
 - 
delete()¶
 - 
get_children()¶
- Return type: - Gladeui.XmlNode
 - 
get_children_with_comments()¶
- Return type: - Gladeui.XmlNode
 - 
get_parent()¶
- Return type: - Gladeui.XmlNode
 - 
next()¶
- Return type: - Gladeui.XmlNode
 - 
next_with_comments()¶
- Return type: - Gladeui.XmlNode
 - 
prev_with_comments()¶
- Return type: - Gladeui.XmlNode
 - 
remove()¶
 - 
set_property_string(name, string)¶
- Parameters: - Set a property as a string in the self. Note that - Nonestring value Are simply ignored and not written in the XML.
 
- 
classmethod