Merge branch 'documentation/JAL-3407_2.11.1_release' into releases/Release_2_11_1_Branch
[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 }