/** * This class was automatically generated by a Snowball to Java compiler * It implements the stemming algorithm defined by a snowball script. */ package file.stemming; import java.lang.reflect.InvocationTargetException; public abstract class SnowballStemmer extends SnowballProgram { public abstract boolean stem(); };