|
|
__contains__(self,
id)
True if there is a child element with the given id. |
source code
|
|
|
|
|
|
|
__getitem__(self,
id)
Return the child with given id. |
source code
|
|
|
|
__init__(self,
id)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
|
|
__len__(self)
Return the number of children. |
source code
|
|
|
|
add(self,
entity)
Add a child to the Entity. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
get_iterator(self)
Return iterator over children. |
source code
|
|
|
|
|
|
|
get_list(self)
Return a copy of the list of children. |
source code
|
|
|
|
get_parent(self)
Return the parent Entity object. |
source code
|
|
|
|
has_id(self,
id)
True if a child with given id exists. |
source code
|
|
|
|
insert(self,
pos,
entity)
Add a child to the Entity at a specified position. |
source code
|
|
|
|
set_parent(self,
entity)
Set the parent Entity object. |
source code
|
|
|
|
|
|
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__str__
|