461462463464465466467
* @return the JSON unmarshaller * * @throws JAXBException if there is an error creating the unmarshaller. */ public JSONUnmarshaller createJSONUnmarshaller() throws JAXBException { return new JSONUnmarshallerImpl(this, getJSONConfiguration()); }
484485486487488489490
* @return unmarshaller instance with JSON capabilities * @throws javax.xml.bind.JAXBException */ @Override public Unmarshaller createUnmarshaller() throws JAXBException { return new JSONUnmarshallerImpl(jaxbContext, getJSONConfiguration()); }
457458459460461462463
480481482483484485486