TraceLab Component Library
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties
ISnowballStemmer.cs
Go to the documentation of this file.
1 /*
2  * Port of Snowball stemmers on C#
3  * Original stemmers can be found on http://snowball.tartarus.org
4  * Licence still BSD: http://snowball.tartarus.org/license.php
5  *
6  * Most of stemmers are ported from Java by Iveonik Systems ltd. (www.iveonik.com)
7  */
8 
9 using System;
10 using System.Collections.Generic;
11 using System.Linq;
12 using System.Text;
13 
14 namespace TraceLab.Components.DevelopmentKit.Preprocessors.Stemmers.Snowball
15 {
19  public interface ISnowballStemmer
20  {
26  string Stem(string s);
27  }
28 }