Examples of XBELAuthorGroup


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

        XBELHeader xh = new XBELHeader();

        List<String> authors = source.getAuthors();
        if (hasItems(authors)) {
            XBELAuthorGroup xag = new XBELAuthorGroup();
            List<String> xauthors = xag.getAuthor();
            for (final String author : authors) {
                xauthors.add(author);
            }
            xh.setAuthorGroup(xag);
        }
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.