Element wrapper.
| 260 | |
| 261 | |
| 262 | class ElementWrapper(Element): |
| 263 | """ |
| 264 | Element wrapper. |
| 265 | """ |
| 266 | |
| 267 | def __init__(self, content): |
| 268 | Element.__init__(self, content.name, content.parent) |
| 269 | self.__content = content |
| 270 | |
| 271 | def str(self, indent=0): |
| 272 | return self.__content.str(indent) |
| 273 | |
| 274 | |
| 275 | class ElementAppender(Appender): |