Package schrodinger :: Package application :: Package desmond :: Module reorder_atom :: Class Node
[hide private]
[frames] | no frames]

Class Node

object --+
         |
        Node

Instance Methods [hide private]
 
__init__(self, atom, parent=None)
x.__init__(...) initializes x; see help(type(x)) for signature
 
__str__(self)
str(x)
 
deproxy(self)
 
atom_index(self)
 
tree_index(self)
 
parent(self)
 
is_root(self)
 
is_leaf(self)
 
children(self)
 
depth(self)
 
height(self, giveme_node=False)
 
add_child(self, atom)
 
print_tree(self, prefix='', drop='| ', node='+-', root=None)
+-1 | +-2 | | +-3 | | +-4 | +-5 | +-6

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, atom, parent=None)
(Constructor)

 

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

Overrides: object.__init__

__str__(self)
(Informal representation operator)

 

str(x)

Overrides: object.__str__
(inherited documentation)