|
suspend_auto_update_target(*args,
**kwds)
A param mapper manages synchronization between target objects that
represent various params and a model object that contains those
params. |
|
|
|
__init__(self,
auto_update_target=False)
x.__init__(...) initializes x; see help(type(x)) for signature |
|
|
|
addMapping(self,
target_obj,
param)
Maps an abstract param to a target object. |
|
|
|
setModelClass(self,
model_class)
The first time this method is called, define
self._model_class . |
|
|
|
setModel(self,
model)
Sets the model instance to map. |
|
|
|
|
|
_getTargetValue(self,
target_obj)
This virtual method should return a mapped object's value, however
that is defined by the derived class. |
|
|
|
_setTargetValue(self,
target_obj,
value)
This virtual method should set a mapped object's value, however that
is defined by the derived class. |
|
|
|
_getModelValue(self,
param) |
|
|
|
_setModelValue(self,
param,
value) |
|
|
|
_updateModelParam(self,
target_obj)
Updates the param value on the model object from the target object. |
|
|
|
_updateTargetParam(self,
target_obj)
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__
|