|
suspend_auto_update_target(*args,
**kwds)
A param mapper manages synchronization between a model object with
params and target objects that represent each param. |
|
|
|
__init__(self,
auto_update_target=False)
x.__init__(...) initializes x; see help(type(x)) for signature |
|
|
|
addMapping(self,
param,
mapped_obj)
Maps an abstract param to a target object. |
|
|
|
|
|
|
|
_getMappedValue(self,
mapped_obj)
This virtual method should return a mapped object's value, however
that is defined by the derived class. |
|
|
|
_setMappedValue(self,
mapped_obj,
value)
This virtual method should set a mapped object's value, however that
is defined by the derived class. |
|
|
|
_updateModelParam(self,
param)
Updates the param value on the model object from the mapped object. |
|
|
|
_updateTargetParam(self,
param)
Updates the mapped object from the param value on the model object. |
|
|
|
updateModel(self)
Updates all mapped parameters on the model object from the target
objects. |
|
|
|
updateTarget(self)
Updates all target objects from the mapped parameters on the model
object. |
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|