Processing on I{node} has started. Build and return the proper object. @param content: The current content being unmarshalled. @type content: L{Content} @return: A subclass of Object. @rtype: L{Object}
(self, content)
| 175 | pass |
| 176 | |
| 177 | def start(self, content): |
| 178 | """ |
| 179 | Processing on I{node} has started. Build and return |
| 180 | the proper object. |
| 181 | @param content: The current content being unmarshalled. |
| 182 | @type content: L{Content} |
| 183 | @return: A subclass of Object. |
| 184 | @rtype: L{Object} |
| 185 | """ |
| 186 | content.data = Factory.object(content.node.name) |
| 187 | |
| 188 | def end(self, content): |
| 189 | """ |