コード例 #1
0
ファイル: GermanAnalyzer.cs プロジェクト: yonder/mono
 /// <summary> Builds an exclusionlist from the words contained in the given file.</summary>
 public virtual void  SetStemExclusionTable(System.IO.FileInfo exclusionlist)
 {
     exclusionSet = WordlistLoader.GetWordSet(exclusionlist);
 }
コード例 #2
0
ファイル: GermanAnalyzer.cs プロジェクト: yonder/mono
 /// <summary> Builds an analyzer with the given stop words.</summary>
 public GermanAnalyzer(System.IO.FileInfo stopwords)
 {
     stopSet = WordlistLoader.GetWordSet(stopwords);
 }