Package org.sf.mustru.utils

Examples of org.sf.mustru.utils.WordnetTools


  * Test Wordnet synonyms
  */
  public void testSynonyms()
  {
   System.out.println("Started testing for wordnet synonyms");
   WordnetTools wnetTools = new WordnetTools();
   String word = "vietnamese"; String pos = "n"; String synonyms = wnetTools.getSynonyms(word, pos);
   System.out.println("Synonyms of " + word + " are -->" + synonyms);
   word = "track down"; pos = "v"; synonyms = wnetTools.getSynonyms(word, pos);
   System.out.println("Synonyms of " + word + " are -->" + synonyms);
   System.out.println("Finished testing for wordnet synonyms");
  }
View Full Code Here

TOP

Related Classes of org.sf.mustru.utils.WordnetTools

Copyright © 2018 www.massapicom. 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.