Package qubx :: Module tree_native :: Class Node
[hide private]
[frames] | no frames]

Class Node

source code

object --+
         |
        Node

Instance Methods [hide private]
 
__init__(self, name='', impl=None)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__del__(self) source code
 
__cmp__(self, other) source code
 
__nonzero__(self) source code
 
__repr__(self)
repr(x)
source code
 
__str__(self)
str(x)
source code
 
__getattr__(self, key) source code
 
__setattr__(self, key, val)
x.__setattr__('name', value) <==> x.name = value
source code
 
__len__(self) source code
 
__getitem__(self, key) source code
 
save(self) source code
 
saveAs(self, path, as_copy=False) source code
 
close(self) source code
 
clone(self, deep=True) source code
 
list(self) source code
 
find(self, name) source code
 
next(self, name=None) source code
 
nextSameName(self) source code
 
append(self, child_or_name) source code
 
appendClone(self, node, deep=True) source code
 
insert(self, child_or_name, after=None) source code
 
insertClone(self, node, deep=True, after=None) source code
 
remove(self, child, after=None) source code
 
lock(self, timeout_ms=None) source code
 
unlock(self) source code
 
getBytes(self) source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __sizeof__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, name='', impl=None)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

__repr__(self)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)

__setattr__(self, key, val)

source code 

x.__setattr__('name', value) <==> x.name = value

Overrides: object.__setattr__
(inherited documentation)