Exemple #1
0
 /// <summary>
 /// Instantiates the current synset. Any related synsets are created as synset shells. These shells only contain
 /// the POS and offset. Other members can be initialized by calling Instantiate on the shells. This should only
 /// be called when _not_ using in-memory storage. When using in-memory storage, all synsets are instantiated in
 /// the WordNetEngine constructor.
 /// </summary>
 internal void Instantiate()
 {
     // instantiate with definition line from disk
     Instantiate(_wordNetEngine.GetSynSetDefinition(_pos, _offset), null);
 }