Class | Line # | Actions | |||
---|---|---|---|---|---|
UniValidator | 13 | 2 | 2 |
1 | // | |
2 | // This software is now distributed according to | |
3 | // the Lesser Gnu Public License. Please see | |
4 | // http://www.gnu.org/copyleft/lesser.txt for | |
5 | // the details. | |
6 | // -- Happy Computing! | |
7 | // | |
8 | package com.stevesoft.pat; | |
9 | ||
10 | /** | |
11 | * This provides a base class for all the Unicode character matching rules. | |
12 | */ | |
13 | class UniValidator extends Validator | |
14 | { | |
15 | 0 | public patInt minChars() |
16 | { | |
17 | 0 | return new patInt(1); |
18 | } | |
19 | ||
20 | 0 | public patInt maxChars() |
21 | { | |
22 | 0 | return new patInt(1); |
23 | } | |
24 | } |