Package rekall :: Package ui :: Module text :: Class JoinedCell
[frames] | no frames]

Class JoinedCell

source code


Joins child cells sideways (left to right).

This is not a replacement for table output! Joined cells are for use when an object renderer needs to display a subtable, or when one needs to pass on wrapping information onto the table, and string concatenation in the Cell class is insufficient.

Instance Methods
 
__init__(self, *cells, **kwargs)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
rebuild(self) source code
 
__repr__(self)
repr(x)
source code
 
__iter__(self) (Inherited from rekall.ui.text.BaseCell) source code
 
__unicode__(self) (Inherited from rekall.ui.text.BaseCell) source code
 
dirty(self) (Inherited from rekall.ui.text.BaseCell) source code
 
rewrap(self, width=None, align='l', mode='stretch') (Inherited from rekall.ui.text.BaseCell) source code

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

Class Variables
  mode = 'stretch' (Inherited from rekall.ui.text.BaseCell)
  width_explicit = False (Inherited from rekall.ui.text.BaseCell)
Properties
  align (Inherited from rekall.ui.text.BaseCell)
  height (Inherited from rekall.ui.text.BaseCell)
  lines (Inherited from rekall.ui.text.BaseCell)
  width (Inherited from rekall.ui.text.BaseCell)

Inherited from object: __class__

Method Details

__init__(self, *cells, **kwargs)
(Constructor)

source code 

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

Overrides: object.__init__
(inherited documentation)

rebuild(self)

source code 
Overrides: BaseCell.rebuild

__repr__(self)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)