コード例 #1
0
ファイル: Article.java プロジェクト: Neuw84/wikipediaminer
  /** @return the number of distinct articles that this article links to */
  public int getDistinctLinksOutCount() {

    DbPageLinkCounts lc = env.getDbPageLinkCounts().retrieve(id);

    if (lc == null) return 0;
    else return lc.getDistinctLinksOut();
  }
コード例 #2
0
ファイル: Article.java プロジェクト: Neuw84/wikipediaminer
  /** @return the total number of links that are made to this article */
  public int getTotalLinksInCount() {

    DbPageLinkCounts lc = env.getDbPageLinkCounts().retrieve(id);

    if (lc == null) return 0;
    else return lc.getTotalLinksIn();
  }