Java XML JAXB Marshaller getJSIDLMarshaller()

Here you can find the source of getJSIDLMarshaller()

Description

get JSIDL Marshaller

License

Open Source License

Declaration

protected static Marshaller getJSIDLMarshaller() throws JAXBException 

Method Source Code

//package com.java2s;
/***********           LICENSE HEADER   *******************************
 JAUS Tool Set/*w ww. ja  v  a  2 s  . com*/
 Copyright (c)  2010, United States Government
 All rights reserved.

 Redistribution and use in source and binary forms, with or without 
 modification, are permitted provided that the following conditions are met:

 Redistributions of source code must retain the above copyright notice, 
 this list of conditions and the following disclaimer.

 Redistributions in binary form must reproduce the above copyright 
 notice, this list of conditions and the following disclaimer in the 
 documentation and/or other materials provided with the distribution.

 Neither the name of the United States Government nor the names of 
 its contributors may be used to endorse or promote products derived from 
 this software without specific prior written permission.

 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 
 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 
 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
 POSSIBILITY OF SUCH DAMAGE.
 *********************  END OF LICENSE ***********************************/

import javax.xml.bind.Marshaller;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;

public class Main {
    private static JAXBContext jsidlJc = null;
    private static Marshaller jsidlMarshaller = null;

    protected static Marshaller getJSIDLMarshaller() throws JAXBException {

        if (jsidlJc == null)
            jsidlJc = JAXBContext.newInstance("org.jts.jsidl.binding");
        if (jsidlMarshaller == null)
            jsidlMarshaller = jsidlJc.createMarshaller();

        return jsidlMarshaller;
    }
}

Related

  1. createMarshaller(Class clazz)
  2. createMarshaller(JAXBContext context)
  3. createMarshaller(JAXBContext ctx, boolean indent)
  4. createMarshaller(Object object)
  5. createMarshaller(String pack)
  6. getMarshaller()
  7. getMarshaller()
  8. getMarshaller(boolean prettyFormat)
  9. getMarshaller(Class c)