OrthoMatcherRule.java
1 package gate.creole.orthomatcher; 2 3 public interface OrthoMatcherRule { 4 5 String getId(); 6 boolean value(String s1,String s2); 7 String description=""; 8 }