Package org.openbel.framework.common.enums

Examples of org.openbel.framework.common.enums.CitationType


                for (Citation citation : citations) {
                    final String id = citation.getId();
                    final String name = citation.getName();
                    final String comment = citation.getComment();
                    final CitationType citationType =
                            citation.getCitationType();
                    final String ctype = citationType != null ? citationType
                            .getDisplayValue() : null;

                    // Pack the authors string exactly as done in
                    // CitationDataConverter.convert(Citation, Map<String, BELAnnotationDefinition>).
                    String author = null;
View Full Code Here


            String name = null;
            String id = null;
            String comment = null;
            Date publicationDate = null;
            List<String> authors = null;
            CitationType citationType = null;

            for (Annotation annotation : annotationList) {
                if (CitationReferenceAnnotationDefinition.ANNOTATION_DEFINITION_ID
                        .equals(annotation.getAnnotationType().getName())) {
                    //citation reference id
View Full Code Here

TOP

Related Classes of org.openbel.framework.common.enums.CitationType

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.