JAL-1807 Bob
[jalviewjs.git] / site / j2s / swingjs / JSThreadGroup.js
1 Clazz.declarePackage ("swingjs");
2 Clazz.load (["java.lang.ThreadGroup"], "swingjs.JSThreadGroup", null, function () {
3 c$ = Clazz.decorateAsClass (function () {
4 this.html5Applet = null;
5 Clazz.instantialize (this, arguments);
6 }, swingjs, "JSThreadGroup", ThreadGroup);
7 Clazz.defineMethod (c$, "setHtmlApplet", 
8 function (html5Applet) {
9 this.html5Applet = html5Applet;
10 }, "swingjs.api.HTML5Applet");
11 Clazz.defineMethod (c$, "getHtmlApplet", 
12 function () {
13 return this.html5Applet;
14 });
15 });