Exemplo 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));
 }
Exemplo n.º 3
0
 public ArabicStemFilter(TokenStream input)
     : base(input)
 {
     stemmer = new ArabicStemmer();
     termAtt = AddAttribute<ITermAttribute>();
 }
Exemplo n.º 4
0
 public ArabicStemFilter(TokenStream input) : base(input)
 {
     stemmer = new ArabicStemmer();
     termAtt = (TermAttribute)AddAttribute(typeof(TermAttribute));
 }