Merge branch 'master' of https://source.jalview.org/git/jalviewjs.git
[jalviewjs.git] / site / j2s / com / stevesoft / pat / Prop.js
1 Clazz.declarePackage ("com.stevesoft.pat");
2 Clazz.load (null, "com.stevesoft.pat.Prop", ["com.stevesoft.pat.Bits"], function () {
3 c$ = Clazz.declareType (com.stevesoft.pat, "Prop");
4 c$.isDecimalDigit = Clazz.defineMethod (c$, "isDecimalDigit", 
5 function (c) {
6 if (com.stevesoft.pat.Bits.decimal_digit == null) {
7 com.stevesoft.pat.Bits.decimal_digit_f ();
8 }return com.stevesoft.pat.Bits.decimal_digit.get (c.charCodeAt (0));
9 }, "~S");
10 c$.isAlphabetic = Clazz.defineMethod (c$, "isAlphabetic", 
11 function (c) {
12 if (com.stevesoft.pat.Bits.letter == null) {
13 com.stevesoft.pat.Bits.letter_f ();
14 }return com.stevesoft.pat.Bits.letter.get (c.charCodeAt (0));
15 }, "~S");
16 c$.isMath = Clazz.defineMethod (c$, "isMath", 
17 function (c) {
18 if (com.stevesoft.pat.Bits.math == null) {
19 com.stevesoft.pat.Bits.math_f ();
20 }return com.stevesoft.pat.Bits.math.get (c.charCodeAt (0));
21 }, "~S");
22 c$.isCurrency = Clazz.defineMethod (c$, "isCurrency", 
23 function (c) {
24 if (com.stevesoft.pat.Bits.currency == null) {
25 com.stevesoft.pat.Bits.currency_f ();
26 }return com.stevesoft.pat.Bits.currency.get (c.charCodeAt (0));
27 }, "~S");
28 c$.isWhite = Clazz.defineMethod (c$, "isWhite", 
29 function (c) {
30 if (com.stevesoft.pat.Bits.white == null) {
31 com.stevesoft.pat.Bits.white_f ();
32 }return com.stevesoft.pat.Bits.white.get (c.charCodeAt (0));
33 }, "~S");
34 c$.isPunct = Clazz.defineMethod (c$, "isPunct", 
35 function (c) {
36 if (com.stevesoft.pat.Bits.punct == null) {
37 com.stevesoft.pat.Bits.punct_f ();
38 }return com.stevesoft.pat.Bits.punct.get (c.charCodeAt (0));
39 }, "~S");
40 });