23e5b27fbfe0546989ca6393e753ad0c5413a40f
[jalview.git] / src / jalview / util / matcher / MatcherI.java
1 package jalview.util.matcher;
2
3 public interface MatcherI
4 {
5   /**
6    * Answers true if the given value is matched, else false
7    * 
8    * @param s
9    * @return
10    */
11   boolean matches(String s);
12
13   Condition getCondition();
14
15   String getPattern();
16 }