216217218219220221222223224225226
doc = (Document) xmlNode; Node child = doc.createElement("root"); try { xmlNode.appendChild(skeleton.bindTo(this, child, jaxbObject, null, null)); } catch (IOException e) { throw new JAXBException(e); } }
339340341342343344345346347348349
if (skeleton == null) throw new MarshalException(L.l("Unable to update {0}: its type unknown to this JAXBContext", jaxbObject)); try { return skeleton.bindTo(this, xmlNode, jaxbObject, null, null); } catch (IOException e) { throw new JAXBException(e); } }