Package edu.smu.tspell.wordnet

Examples of edu.smu.tspell.wordnet.WordSense


   * @throws WordNetException An error occurred retrieving data.
   */
  protected WordSense getSingletonSense(
      RelationshipType type, String wordForm) throws WordNetException
  {
    WordSense sense;
    WordSense[] references =
        getReferences(RelationshipType.PARTICIPLE, wordForm);
    switch (references.length)
    {
      //  Zero is ok; it means that there isn't one
View Full Code Here


      {
        //  Get (and possibly create) the synset
        synset = factory.getSynset(sensePtrs[i]);
        //  Now get the word form in the target synset
        wordForms = synset.getWordForms();
        senses[i] = new WordSense(
            wordForms[sensePtrs[i].getWordNumber() - 1], synset);
      }
      references.putLexicalRelationships(
          wordForm, type, senses);
    }
View Full Code Here

TOP

Related Classes of edu.smu.tspell.wordnet.WordSense

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.