public BulgarianStemFilter(TokenStream input)
     : base(input)
 {
     stemmer = new BulgarianStemmer();
     this.termAtt = this.AddAttribute<ITermAttribute>();
 }
Beispiel #2
0
 public BulgarianStemFilter(TokenStream input)
     : base(input)
 {
     stemmer      = new BulgarianStemmer();
     this.termAtt = this.AddAttribute <ITermAttribute>();
 }