use of eu.transkribus.core.model.beans.pagecontent_trp.TrpObjectFactory in project TranskribusCore by Transkribus.
the class PageXmlUtils method createUnmarshaller.
public static Unmarshaller createUnmarshaller() throws JAXBException {
JAXBContext jc = createPageJAXBContext();
Unmarshaller u = jc.createUnmarshaller();
u.setProperty("com.sun.xml.internal.bind.ObjectFactory", new TrpObjectFactory());
u.setListener(new TrpPageUnmarshalListener());
return u;
}
Aggregations