Package org.openbel.framework.common.xbel.converters

Examples of org.openbel.framework.common.xbel.converters.DocumentConverter


    /**
     * {@inheritDoc}
     */
    @Override
    public String toXML(final Document d) throws JAXBException, IOException {
        XBELDocument xdoc = new DocumentConverter().convert(d);
        return converter.marshal(xdoc);
    }
View Full Code Here


        XBELDocument xdoc = toJAXB(f);
        return convert(xdoc);
    }

    private Document convert(final XBELDocument xdoc) {
        return new DocumentConverter().convert(xdoc);
    }
View Full Code Here

TOP

Related Classes of org.openbel.framework.common.xbel.converters.DocumentConverter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.