Examples of XBELParameter


Examples of org.openbel.bel.xbel.model.XBELParameter

        if (source == null) return null;

        Namespace namespace = source.getNamespace();
        String value = source.getValue();

        XBELParameter xp = new XBELParameter();

        if (namespace != null)
            xp.setNs(namespace.getPrefix());
        if (value != null)
            xp.setValue(value);

        return xp;
    }
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.