JAL-1807 still testing
[jalviewjs.git] / unused / 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 /**\r
11  * This extension of multi is the version of multi which wants to match the\r
12  * fewest number of characters. It implements the *? type of syntax.\r
13  */\r
14 class MultiMin extends Multi\r
15 {\r
16   MultiMin(patInt i1, patInt i2, Pattern p) throws RegSyntax\r
17   {\r
18     super(i1, i2, p);\r
19     matchFewest = true;\r
20   }\r
21 };\r