Public Member Functions | |
def | __init__ |
Constructor of xmlElement. | |
def | getType |
Returns Element type. | |
def | toString |
Returns Element representation. | |
Public Attributes | |
level | |
Nested level. | |
type | |
Element type. | |
parent | |
Parent element. | |
Static Public Attributes | |
int | Element = 1 |
Universal type id. | |
int | StructuredElement = 2 |
Structured type id. | |
int | CommentElement = 3 |
Comment type id. | |
int | CharactersElement = 4 |
Characters type id. |
Basic universal node in the our tree XML element structure.
It represents universal node and is parent class for end node classes.
def xmlmanipulators::xmlElement::__init__ | ( | self, | ||
level, | ||||
parent | ||||
) |
Constructor of xmlElement.
self | The object pointer. | |
level | Nested level. | |
parent | Parent of the node (actual structure or None). |
def xmlmanipulators::xmlElement::getType | ( | self | ) |
Returns Element type.
self | The object pointer. |
def xmlmanipulators::xmlElement::toString | ( | self | ) |
Returns Element representation.
self | The object pointer. |
Reimplemented in xmlmanipulators::xmlCommentElement, xmlmanipulators::xmlCharactersElement, and xmlmanipulators::xmlStructuredElement.
int xmlmanipulators::xmlElement::CharactersElement = 4 [static] |
Characters type id.
int xmlmanipulators::xmlElement::CommentElement = 3 [static] |
Comment type id.
int xmlmanipulators::xmlElement::Element = 1 [static] |
Universal type id.
Nested level.
Parent element.
int xmlmanipulators::xmlElement::StructuredElement = 2 [static] |
Structured type id.
Element type.
Reimplemented in xmlmanipulators::xmlCommentElement, xmlmanipulators::xmlCharactersElement, and xmlmanipulators::xmlStructuredElement.