Create and return an XML node that is qualified using the I{type}. Also, make sure all referenced namespace prefixes are declared. @param content: The content for which proccessing has ended. @type content: L{Object} @return: A new node. @rty
(self, content)
| 117 | self.marshaller = marshaller |
| 118 | |
| 119 | def node(self, content): |
| 120 | """ |
| 121 | Create and return an XML node that is qualified |
| 122 | using the I{type}. Also, make sure all referenced namespace |
| 123 | prefixes are declared. |
| 124 | @param content: The content for which proccessing has ended. |
| 125 | @type content: L{Object} |
| 126 | @return: A new node. |
| 127 | @rtype: L{Element} |
| 128 | """ |
| 129 | return self.marshaller.node(content) |
| 130 | |
| 131 | def setnil(self, node, content): |
| 132 | """ |