Formatting
[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\r
14     extends Multi\r
15 {\r
16   MultiMin(patInt i1, patInt i2, Pattern p)\r
17       throws RegSyntax\r
18   {\r
19     super(i1, i2, p);\r
20     matchFewest = true;\r
21   }\r
22 };\r