Package TestON :: Package drivers :: Module component :: Class Component
[hide private]
[frames] | no frames]

Class Component

source code

object --+
         |
        Component

This is the tempalte class for components

Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
__getattr__(self, name)
This will invoke, if the attribute wasn't found the usual ways.
source code
 
connect(self) source code
 
execute(self, cmd) source code
 
disconnect(self) source code
 
config(self) source code
 
cleanup(self) source code
 
log(self, message)
Here finding the for the component to which the log message based on the called child object.
source code
 
close_log_handles(self) source code
 
get_version(self) source code
 
experimentRun(self, **kwargs) source code

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)

__getattr__(self, name)
(Qualification operator)

source code 

This will invoke, if the attribute wasn't found the usual ways.
 Here it will look for assert_attribute and will execute when AttributeError occurs.
 It will return the result of the assert_attribute.