void marshal(InMemory o, XMLSerializer out) throws IOException, SAXException, XMLStreamException { try { core.marshal(_adaptM(XMLSerializer.getInstance(), o), out); } catch (MarshalException e) { // recover from error by not marshalling this element. } }
public void marshal(Marshaller context, InMemory inMemory, ContentHandler contentHandler) throws JAXBException { core.marshal(context, adaptM(context, inMemory), contentHandler); }
public void marshal(Marshaller m, InMemory inMemory, Node output) throws JAXBException { core.marshal(m, adaptM(m, inMemory), output); }
public void marshal(Marshaller m, InMemory inMemory, OutputStream output, NamespaceContext nsc) throws JAXBException { core.marshal(m, adaptM(m, inMemory), output, nsc); }
public void marshal(Marshaller m, InMemory inMemory, XMLStreamWriter output) throws JAXBException { core.marshal(m, adaptM(m, inMemory), output); }
public BridgeAdapter( InternalBridge<OnWire> core, Class<? extends XmlAdapter<OnWire, InMemory>> adapter) { super(core.getContext()); this.core = core; this.adapter = adapter; }
public TypeReference getTypeReference() { return core.getTypeReference(); }
public @NotNull InMemory unmarshal(Unmarshaller u, Node n) throws JAXBException { return adaptU(u, core.unmarshal(u, n)); }
public @NotNull InMemory unmarshal(Unmarshaller u, InputStream in) throws JAXBException { return adaptU(u, core.unmarshal(u, in)); }
public void marshal(Marshaller context, InMemory inMemory, Result result) throws JAXBException { core.marshal(context, adaptM(context, inMemory), result); }