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