Package org.openbel.bel.xbel.model.XBELCitation

Examples of org.openbel.bel.xbel.model.XBELCitation.AuthorGroup


            xc.setType(ct);
        }

        List<String> authors = source.getAuthors();
        if (hasItems(authors)) {
            AuthorGroup ag = new AuthorGroup();
            List<String> xauthors = ag.getAuthor();
            for (final String author : authors) {
                xauthors.add(author);
            }
            xc.setAuthorGroup(ag);
        }
View Full Code Here

TOP

Related Classes of org.openbel.bel.xbel.model.XBELCitation.AuthorGroup

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.