Base class, provides interface for I{automatic} link management between a L{Properties} object and the L{Properties} contained within I{values}.
| 25 | |
| 26 | |
| 27 | class AutoLinker(object): |
| 28 | """ |
| 29 | Base class, provides interface for I{automatic} link |
| 30 | management between a L{Properties} object and the L{Properties} |
| 31 | contained within I{values}. |
| 32 | """ |
| 33 | def updated(self, properties, prev, next): |
| 34 | """ |
| 35 | Notification that a values was updated and the linkage |
| 36 | between the I{properties} contained with I{prev} need to |
| 37 | be relinked to the L{Properties} contained within the |
| 38 | I{next} value. |
| 39 | """ |
| 40 | pass |
| 41 | |
| 42 | |
| 43 | class Link(object): |