needed for applet search
[jalview.git] / src / com / stevesoft / pat / MultiMin.java
1 //\r
2 // This software is now distributed according to\r
3 // the Lesser Gnu Public License.  Please see\r
4 // http://www.gnu.org/copyleft/lesser.txt for\r
5 // the details.\r
6 //    -- Happy Computing!\r
7 //\r
8 package com.stevesoft.pat;\r
9 \r
10 /** This extension of multi is the version of multi\r
11  which wants to match the fewest number of characters.\r
12  It implements the *? type of syntax. */\r
13 class MultiMin extends Multi {\r
14     MultiMin(patInt i1,patInt i2,Pattern p) throws RegSyntax {\r
15         super(i1,i2,p);\r
16         matchFewest = true;\r
17     }\r
18 };\r