Examples of BELScriptExporter


Examples of org.openbel.framework.common.belscript.BELScriptExporter

    private void convertXbelToBel(final File inputFile,
            final OutputStream output) {
        try {
            final boolean useShortForm = false;
            final BELScriptExporter exporter = new BELScriptExporter();
            exporter.setUseShortForm(useShortForm);
            exporter.export(new XBELConverterServiceImpl().toCommon(inputFile),
                    output);

        } catch (SAXException ex) {
            close(output);
            bailOnException(ex);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.