Uses of Interface
edu.mit.jwi.item.IPointer

Packages that use IPointer
edu.mit.jwi Provides the main dictionary interface and a default implementation. 
edu.mit.jwi.data.parse Provides classes and interfaces that parse lines from Wordnet files. 
edu.mit.jwi.item Provides classes and interfaces that represent the Wordnet data structures. 
 

Uses of IPointer in edu.mit.jwi
 

Methods in edu.mit.jwi with parameters of type IPointer
 void RAMDictionary.DictionaryData.WordBuilder.addRelatedWord(IPointer type, IWordID id)
           
 

Uses of IPointer in edu.mit.jwi.data.parse
 

Methods in edu.mit.jwi.data.parse that return IPointer
protected  IPointer DataLineParser.resolvePointer(String symbol, POS pos)
           Retrieves the pointer objects for the DataLineParser.parseLine(String) method.
 

Uses of IPointer in edu.mit.jwi.item
 

Classes in edu.mit.jwi.item that implement IPointer
 class Pointer
          Concrete implementation of the IPointer interface.
 

Methods in edu.mit.jwi.item that return types with arguments of type IPointer
 Map<IPointer,List<IWordID>> Word.getRelatedMap()
           
 Map<IPointer,List<ISynsetID>> Synset.getRelatedMap()
           
 Map<IPointer,List<IWordID>> IWord.getRelatedMap()
          Returns an immutable map of from pointers to immutable maps.
 Map<IPointer,List<ISynsetID>> ISynset.getRelatedMap()
          Returns an immutable map from semantic pointers to immutable lists of synsets.
 

Methods in edu.mit.jwi.item with parameters of type IPointer
 void Synset.IWordBuilder.addRelatedWord(IPointer type, IWordID id)
          Adds a pointer from this word to another word with the specified id.
 void Synset.WordBuilder.addRelatedWord(IPointer type, IWordID id)
           
 List<ISynsetID> Synset.getRelatedSynsets(IPointer type)
           
 List<ISynsetID> ISynset.getRelatedSynsets(IPointer ptr)
          Returns an immutable list of the ids of all synsets that are related to this synset by the specified pointer type.
 List<IWordID> Word.getRelatedWords(IPointer type)
           
 List<IWordID> IWord.getRelatedWords(IPointer ptr)
          Returns an immutable list of all word ids related to this word by the specified pointer type.
 

Constructor parameters in edu.mit.jwi.item with type arguments of type IPointer
Synset(ISynsetID id, ILexFile lexFile, boolean isAdjSat, boolean isAdjHead, String gloss, List<Synset.IWordBuilder> wordBuilders, Map<IPointer,? extends List<ISynsetID>> ids)
          Constructs a new synset object with the specified parameters.
Word(ISynset synset, int number, String lemma, int lexID, AdjMarker adjMarker, List<IVerbFrame> frames, Map<IPointer,? extends List<IWordID>> pointers)
          Constructs a new word object.
Word(ISynset synset, IWordID id, int lexID, AdjMarker adjMarker, List<IVerbFrame> frames, Map<IPointer,? extends List<IWordID>> pointers)
          Constructs a new word object.
 



Copyright © 2011. All Rights Reserved.