Here you can find the source of getUnmarshaller(Class jaxbClass)
public static Unmarshaller getUnmarshaller(Class jaxbClass) throws JAXBException
//package com.java2s; //License from project: Open Source License import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBException; import javax.xml.bind.Unmarshaller; public class Main { public static Unmarshaller getUnmarshaller(Class jaxbClass) throws JAXBException { JAXBContext jaxbContext = JAXBContext.newInstance(jaxbClass); return jaxbContext.createUnmarshaller(); }//from w ww .j a va 2 s.com }