/**
  * Ctor with an {@link Word} and a dictionary This Ctor is quicker than the other.
  *
  * @param jwiDictionary
  * @throws WordNetException
  */
 ExtJwnlSensedWord(Word wordObj, ExtJwnlDictionary extJwnlDictionary) throws WordNetException {
   if (wordObj == null) throw new WordNetException("wordObj is null!");
   this.wordObj = wordObj;
   this.synset = new ExtJwnlSynset(extJwnlDictionary, wordObj.getSynset());
   this.word = wordObj.getLemma();
   this.dictionary = extJwnlDictionary;
   this.pos = ExtJwnlUtils.getWordNetPartOfSpeech(wordObj.getPOS());
 }