Esempio n. 1
0
 protected String[] getTags(String word) {
   TagCount count = get(word);
   if (count == null) {
     return null;
   }
   return count.getTags();
 }