예제 #1
0
 /*
  * @param stemdictionary Dictionary of word stem pairs, that overrule the algorithm
  */
 public DutchStemFilter(TokenStream _in, ISet <string> exclusiontable, IDictionary <string, string> stemdictionary)
     : this(_in, exclusiontable)
 {
     stemmer.SetStemDictionary(stemdictionary);
 }
예제 #2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="_in"></param>
 /// <param name="exclusiontable"></param>
 /// <param name="stemdictionary">Dictionary of word stem pairs, that overrule the algorithm</param>
 public DutchStemFilter(TokenStream _in, Hashtable exclusiontable, Hashtable stemdictionary) : this(_in, exclusiontable)
 {
     stemmer.SetStemDictionary(stemdictionary);
 }