Here you can find the source of createUnmarshaller()
public static Unmarshaller createUnmarshaller() throws JAXBException
//package com.java2s; //License from project: Apache License import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBException; import javax.xml.bind.Unmarshaller; public class Main { private static JAXBContext jxbc; public static Unmarshaller createUnmarshaller() throws JAXBException { return jxbc.createUnmarshaller(); }/*from w w w. j a v a 2 s . c o m*/ }