JAL-1807 test
[jalviewjs.git] / bin / com / stevesoft / pat / NullPattern.js
1 Clazz.declarePackage ("com.stevesoft.pat");
2 Clazz.load (["com.stevesoft.pat.Pattern"], "com.stevesoft.pat.NullPattern", ["com.stevesoft.pat.patInt"], function () {
3 c$ = Clazz.declareType (com.stevesoft.pat, "NullPattern", com.stevesoft.pat.Pattern);
4 Clazz.overrideMethod (c$, "toString", 
5 function () {
6 return this.nextString ();
7 });
8 Clazz.overrideMethod (c$, "matchInternal", 
9 function (p, pt) {
10 return this.nextMatch (p, pt);
11 }, "~N,com.stevesoft.pat.Pthings");
12 Clazz.overrideMethod (c$, "maxChars", 
13 function () {
14 return  new com.stevesoft.pat.patInt (0);
15 });
16 Clazz.overrideMethod (c$, "clone1", 
17 function (h) {
18 return  new com.stevesoft.pat.NullPattern ();
19 }, "java.util.Hashtable");
20 });