This repository was archived by the owner on Jul 31, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
src/main/java/org/gitmining/dao Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11package org .gitmining .dao ;
22import java .util .*;
33
4+ import org .gitmining .bean .RepoPairRelation ;
45import org .gitmining .bean .RepoScore ;
56import org .gitmining .bean .RepoTagPair ;
67import org .gitmining .bean .Repository ;
78import org .gitmining .bean .SimpleRepo ;
89
9- import weka .classifiers .bayes .net .search .SearchAlgorithm ;
1010public interface RepositoryDao {
1111 public List <SimpleRepo > searchRepos (String pattern );
1212 public SimpleRepo searchSimpleRepoById (int id );
@@ -19,5 +19,7 @@ public interface RepositoryDao {
1919 public List <SimpleRepo > getSimpleReposByTagNode (String node_id );
2020 public List <SimpleRepo > getSimpleReposByTagName (String tag_name );
2121 public List <SimpleRepo > getSimpleReposByTagNameAndSort (String tag_name ,String type );
22- public List <Repository > getReposSortByHot (List <Integer > tagIDs ,int number );
22+ public List <Repository > getReposSortByHot (List <Integer > tagIDs , int number );
23+ public List <RepoPairRelation > getSimilarRepoPairRelation (int repo_id );
24+ public List <Repository > getContributedRepoByUserId (int user_id );
2325}
You can’t perform that action at this time.
0 commit comments