Package pyffi :: Package qskope :: Module detail_tree :: Class DetailTreeItem
[hide private]
[frames] | no frames]

Class DetailTreeItem

source code

object --+
         |
        DetailTreeItem

Stores all internal information to vizualize DetailNodes in a tree view.
Instance Methods [hide private]
 
__init__(self, data=None, parent=None, row=0, edge_type=(True, True), edge_filter=(True, True))
Initialize the node tree hierarchy from the given data.
source code

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

Instance Variables [hide private]
list of DetailTreeItem children
The children of the node.
DetailTreeItemData data
The item data.
EdgeType edge_type
The type of edge from the parent of this node to itself.
type(None) or DetailTreeItem parent
The parent of the node.
int row
The row number of this node, as child.
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, data=None, parent=None, row=0, edge_type=(True, True), edge_filter=(True, True))
(Constructor)

source code 
Initialize the node tree hierarchy from the given data.
Overrides: object.__init__