Esempio n. 1
0
 public ArabicStemFilter(TokenStream input) : base(input)
 {
     stemmer = new ArabicStemmer();
     termAtt = AddAttribute <ITermAttribute>();
 }
 public ArabicStemFilter(TokenStream input) : base(input)
 {
     stemmer = new ArabicStemmer();
     termAtt = (TermAttribute)AddAttribute(typeof(TermAttribute));
 }
Esempio n. 3
0
 public ArabicStemFilter(TokenStream input)
     : base(input)
 {
     stemmer = new ArabicStemmer();
     termAtt = AddAttribute<ITermAttribute>();
 }
Esempio n. 4
0
 public ArabicStemFilter(TokenStream input) : base(input)
 {
     stemmer = new ArabicStemmer();
     termAtt = (TermAttribute)AddAttribute(typeof(TermAttribute));
 }