Link (associate) this object with anI{other} properties object to create a network of properties. Links are bidirectional. @param other: The object to link. @type other: L{Properties} @return: self @rtype: L{Properties}
(self, other)
| 308 | return self.provider(name).__get(name, *df) |
| 309 | |
| 310 | def link(self, other): |
| 311 | """ |
| 312 | Link (associate) this object with anI{other} properties object |
| 313 | to create a network of properties. Links are bidirectional. |
| 314 | @param other: The object to link. |
| 315 | @type other: L{Properties} |
| 316 | @return: self |
| 317 | @rtype: L{Properties} |
| 318 | """ |
| 319 | Link(self, other) |
| 320 | return self |
| 321 | |
| 322 | def unlink(self, *others): |
| 323 | """ |