Examples of addCitedAuthor()


Examples of net.relatedwork.shared.dto.DisplayAuthorResult.addCitedAuthor()

    }

    for (Relationship rel:n.getRelationships(DBRelationshipTypes.CITES_AUTHOR,Direction.OUTGOING)){
      Node citedAuthor = rel.getEndNode();
      Integer score = (Integer)rel.getProperty(DBRelationshipProperties.CITATION_COUNT);
      result.addCitedAuthor(authorAccessHandler.authorFromNode(citedAuthor, score));
    }
   
    for (Relationship rel:n.getRelationships(DBRelationshipTypes.CITES_AUTHOR,Direction.INCOMING)){
      Node citedAuthor = rel.getStartNode();
      Integer score = (Integer)rel.getProperty(DBRelationshipProperties.CITATION_COUNT);
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.