gate.creole.orthomatcher.OrthoMatcherRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of annie Show documentation
Show all versions of annie Show documentation
ANNIE is a general purpose information extraction system that
provides the building blocks of many other GATE applications.
package gate.creole.orthomatcher;
public interface OrthoMatcherRule {
String getId();
boolean value(String s1,String s2);
String description="";
}