コード例 #1
0
ファイル: ArabicStemFilter.cs プロジェクト: zfxsss/lucenenet
 public ArabicStemFilter(TokenStream input) : base(input)
 {
     stemmer = new ArabicStemmer();
     termAtt = AddAttribute <ITermAttribute>();
 }
コード例 #2
0
 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));
 }