Merge branch 'master' of https://source.jalview.org/git/jalviewjs.git
[jalviewjs.git] / site / j2s / jalview / jsdev / Regex.js
1 Clazz.declarePackage ("jalview.jsdev");
2 c$ = Clazz.declareType (jalview.jsdev, "Regex");
3 c$.perlCode = Clazz.defineMethod (c$, "perlCode", 
4 function (string) {
5 return null;
6 }, "~S");
7 Clazz.makeConstructor (c$, 
8 function () {
9 });
10 Clazz.makeConstructor (c$, 
11 function (string) {
12 }, "~S");
13 Clazz.makeConstructor (c$, 
14 function (string, string2) {
15 }, "~S,~S");
16 Clazz.defineMethod (c$, "charsMatched", 
17 function () {
18 return 0;
19 });
20 Clazz.defineMethod (c$, "left", 
21 function () {
22 return null;
23 });
24 Clazz.defineMethod (c$, "matchedFrom", 
25 function () {
26 return 0;
27 });
28 Clazz.defineMethod (c$, "matchedFrom", 
29 function (pos) {
30 return 0;
31 }, "~N");
32 Clazz.defineMethod (c$, "matchedTo", 
33 function () {
34 return 0;
35 });
36 Clazz.defineMethod (c$, "matchedTo", 
37 function (pos) {
38 return 0;
39 }, "~N");
40 Clazz.defineMethod (c$, "numSubs", 
41 function () {
42 return 0;
43 });
44 Clazz.defineMethod (c$, "replaceAll", 
45 function (string) {
46 return null;
47 }, "~S");
48 Clazz.defineMethod (c$, "search", 
49 function (name) {
50 return false;
51 }, "~S");
52 Clazz.defineMethod (c$, "searchFrom", 
53 function (string, rematchat) {
54 return false;
55 }, "~S,~N");
56 Clazz.defineMethod (c$, "setIgnoreCase", 
57 function (b) {
58 }, "~B");
59 Clazz.defineMethod (c$, "stringMatched", 
60 function () {
61 return null;
62 });
63 Clazz.defineMethod (c$, "stringMatched", 
64 function (i) {
65 return null;
66 }, "~N");