JAL-1807 Bob
[jalviewjs.git] / site / j2s / swingjs / plaf / JSViewportUI.js
1 Clazz.declarePackage ("swingjs.plaf");
2 Clazz.load (["swingjs.plaf.JSComponentUI"], "swingjs.plaf.JSViewportUI", null, function () {
3 c$ = Clazz.declareType (swingjs.plaf, "JSViewportUI", swingjs.plaf.JSComponentUI);
4 Clazz.overrideMethod (c$, "getDOMObject", 
5 function () {
6 if (this.domNode == null) this.domNode = this.createDOMObject ("div", this.id, []);
7 return this.domNode;
8 });
9 Clazz.overrideMethod (c$, "installJSUI", 
10 function () {
11 });
12 Clazz.overrideMethod (c$, "uninstallJSUI", 
13 function () {
14 });
15 });