All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tastymima.intf.ProblemMatcher Maven / Gradle / Ivy

package tastymima.intf;

public interface ProblemMatcher {
  public boolean apply(Problem problem);

  public static ProblemMatcher make(ProblemKind kind, String pathStringMatcher) {
    return ProblemMatcherImpl.make(kind, pathStringMatcher);
  }

  public static ProblemMatcher make(String pathStringMatcher) {
    return ProblemMatcherImpl.make(pathStringMatcher);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy