コード例 #1
0
 public void deleteTags() {
   tagDAO.removeAll();
   personDAO.removeAll();
 }
コード例 #2
0
 private void saveTag(Tag tag) {
   tagDAO.merge(tag);
 }
コード例 #3
0
 public List<TagRanking> getTagRanking() {
   return tagDAO.getPopularityCount();
 }
コード例 #4
0
 public List<Tag> getAllTags() {
   return tagDAO.getAll();
 }