KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > contineo > core > text > analyze > Stemmer


1 /*
2  * Stemmer.java
3  *
4  * Created on 24. Juli 2003, 21:07
5  */

6
7 package org.contineo.core.text.analyze;
8
9 /**
10  *
11  * @author Michael Scholz
12  */

13 public interface Stemmer {
14     public String JavaDoc stem(String JavaDoc source);
15 }
16
Popular Tags