public XMLBinder(XMLContext context) {
this.context = new XMLContext(context.getXMLContextState());
marshaller = this.context.createMarshaller();
unmarshaller = this.context.createUnmarshaller();
saxUnmarshaller = new SAXUnmarshaller(unmarshaller, null);
documentPreservationPolicy = new XMLBinderPolicy();
reader = new DOMReader(unmarshaller);
}