JAL-1807 still testing
[jalviewjs.git] / unused / com / stevesoft / pat / UniValidator.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 provides a base class for all the Unicode character matching rules.\r
12  */\r
13 class UniValidator extends Validator\r
14 {\r
15   public patInt minChars()\r
16   {\r
17     return new patInt(1);\r
18   }\r
19 \r
20   public patInt maxChars()\r
21   {\r
22     return new patInt(1);\r
23   }\r
24 }\r