Examples of XBELLicenseGroup


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

            xh.setAuthorGroup(xag);
        }

        List<String> licenses = source.getLicenses();
        if (hasItems(licenses)) {
            XBELLicenseGroup xlg = new XBELLicenseGroup();
            List<String> xlicenses = xlg.getLicense();
            for (final String license : licenses) {
                xlicenses.add(license);
            }
            xh.setLicenseGroup(xlg);
        }
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.