Part of elisa.core.utils.bindable View In Hierarchy
Known subclasses: elisa.core.components.model.Model
Line # | Kind | Name | Docs |
---|---|---|---|
30 | Method | __init__ | Undocumented |
34 | Method | bind | Bind a local attribute to
destination_attribute of |
73 | Method | unbind | Remove the binding of attribute to
destination_attribute of |
104 | Method | unbind_object | Remove all the bindings you have for a certain
destination_object . |
118 | Method | __setattr__ | Undocumented |
136 | Method | __delattr__ | Undocumented |
attribute
to
destination_attribute
of destination_object
.Parameters | attribute | local attribute to bind (type: str ) |
Raises | NotBindable | when you try to bind a private attribute (beginning with an underscore) |
attribute
to
destination_attribute
of destination_object
.
If you want to unbind the whole destination_object you should use the unbind_object
method instead.
Parameters | attribute | local attribute to unbind (type: str ) |
Raises | NotBoundError | when you try to unbind something that is not bound |