Ejemplo n.º 1
0
 /**
  * Builds an exclusionlist from the words contained in the given file.
  */
 public void SetStemExclusionTable(FileInfo exclusionlist)
 {
     excltable = WordlistLoader.GetWordtable(exclusionlist);
 }
Ejemplo n.º 2
0
 /**
  * Builds an analyzer with the given stop words.
  */
 public BrazilianAnalyzer(FileInfo stopwords)
 {
     stoptable = WordlistLoader.GetWordtable(stopwords);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Builds an analyzer with the given stop words.
 /// </summary>
 public FrenchAnalyzer(FileInfo stopwords)
 {
     stoptable = WordlistLoader.GetWordtable(stopwords);
 }