translate aligned cDNA to aligned peptide
[jalview.git] / src / 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 /** This provides a base class for all the Unicode character\r
11  * matching rules.\r
12  */\r
13 class UniValidator\r
14     extends Validator\r
15 {\r
16   public patInt minChars()\r
17   {\r
18     return new patInt(1);\r
19   }\r
20 \r
21   public patInt maxChars()\r
22   {\r
23     return new patInt(1);\r
24   }\r
25 }\r