Here you can find the source of createMarshaller(JAXBContext context)
public static Marshaller createMarshaller(JAXBContext context)
//package com.java2s; //License from project: Apache License import javax.xml.bind.*; public class Main { public static Marshaller createMarshaller(JAXBContext context) { try {//from ww w . j av a 2s . c o m return context.createMarshaller(); } catch (JAXBException e) { throw new IllegalStateException(e); } } }